From 840d878ec203a50f76a4117450d88f078d9d8418 Mon Sep 17 00:00:00 2001 From: Eduardo Gomez Date: Wed, 6 Apr 2016 16:00:28 +0000 Subject: pytestdjango: init at 2.9.1 --- pkgs/top-level/python-packages.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a8e3e93c3025b..50c2051c084ed 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4196,6 +4196,28 @@ in modules // { description = "pytest plugin with mechanisms for caching across test runs"; }; }; + + pytestdjango = buildPythonPackage rec { + name = "pytest-django-${version}"; + version = "2.9.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pytest-django/${name}.tar.gz"; + sha256 = "1mmc7zsz3dlhs6sx4sppkj1vgshabi362r1a8b8wpj1qfximpqcb"; + }; + + # doing this to allow depending packages to find + # pytest's binaries + pytest = self.pytest; + + propagatedBuildInputs = with self; [ django pytest setuptools_scm_18 ]; + + meta = { + description = "py.test plugin for testing of Django applications"; + homepage = http://pytest-django.readthedocs.org/en/latest/; + license = licenses.bsd3; + }; + }; pytestflakes = buildPythonPackage rec { name = "pytest-flakes-${version}"; @@ -19680,6 +19702,16 @@ in modules // { }; }; + setuptools_scm_18 = self.setuptools_scm.override rec { + name = "setuptools_scm-${version}"; + version = "1.8.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2"; + sha256 = "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx"; + }; + }; + setuptoolsDarcs = buildPythonPackage rec { name = "setuptools_darcs-${version}"; version = "1.2.11"; -- cgit 1.4.1 From 0435ac88948e53b90b6dad583364a8d040473dd6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 2 Feb 2016 16:56:05 +0300 Subject: texlive.combine: patch paths into texmf.cnf ...instead of environment variables. Close #12768. (cherry picked from commit acf664814e37c54a7c12b1d065354cab15382793) --- pkgs/tools/typesetting/tex/texlive-new/combine.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/typesetting/tex/texlive-new/combine.nix b/pkgs/tools/typesetting/tex/texlive-new/combine.nix index e69c6ec425c3c..0619a3cc26c7d 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/combine.nix @@ -60,21 +60,24 @@ in buildEnv { + '' export PATH="$out/bin:$out/share/texmf/scripts/texlive:${perl}/bin:$PATH" - export TEXMFCNF="$out/share/texmf/web2c" - export TEXMFDIST="$out/share/texmf" - export TEXMFSYSCONFIG="$out/share/texmf-config" - export TEXMFSYSVAR="$out/share/texmf-var" export PERL5LIB="$out/share/texmf/scripts/texlive" '' + - # patch texmf-dist -> texmf to be sure - # TODO: cleanup the search paths incl. SELFAUTOLOC, and perhaps do lua actions? + # patch texmf-{dist,local} -> texmf to be sure + # TODO: perhaps do lua actions? # tried inspiration from install-tl, sub do_texmf_cnf '' ( cd ./share/texmf/web2c/ local cnfOrig="$(realpath ./texmf.cnf)" rm ./texmf.cnf - cat "$cnfOrig" | sed 's/texmf-dist/texmf/g' > ./texmf.cnf + sed \ + -e 's,texmf-dist,texmf,g' \ + -e 's,texmf-local,texmf,g' \ + -e "s,\$SELFAUTOLOC,$out,g" \ + -e "s,\$SELFAUTODIR,$out/share,g" \ + -e "s,\$SELFAUTOPARENT,$out/share,g" \ + -e "s,\$SELFAUTOGRANDPARENT,$out/share,g" \ + "$cnfOrig" > ./texmf.cnf rm updmap.cfg ) @@ -112,10 +115,6 @@ in buildEnv { rm "$link" makeWrapper "$target" "$link" \ --prefix PATH : "$out/bin:${perl}/bin" \ - --set TEXMFCNF "$out/share/texmf/web2c" \ - --set TEXMFDIST "$out/share/texmf" \ - --set TEXMFSYSCONFIG "$out/share/texmf-config" \ - --set TEXMFSYSVAR "$out/share/texmf-var" \ --prefix PERL5LIB : "$out/share/texmf/scripts/texlive" # avoid using non-nix shebang in $target by calling interpreter -- cgit 1.4.1 From 954f381972cf11d1cede324d5eaf88804cdf9b6a Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Wed, 13 Apr 2016 23:34:30 -0400 Subject: texlive.combine: also patch `texmfcnf.lua` Fixes #14463. --- pkgs/tools/typesetting/tex/texlive-new/combine.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/tools/typesetting/tex/texlive-new/combine.nix b/pkgs/tools/typesetting/tex/texlive-new/combine.nix index 0619a3cc26c7d..2818cbc03849f 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/combine.nix @@ -79,6 +79,19 @@ in buildEnv { -e "s,\$SELFAUTOGRANDPARENT,$out/share,g" \ "$cnfOrig" > ./texmf.cnf + local cnfLuaOrig="$(realpath ./texmfcnf.lua)" + rm ./texmfcnf.lua + sed \ + -e 's,texmf-dist,texmf,g' \ + -e 's,texmf-local,texmf,g' \ + -e "s,\(TEXMFLOCAL[ ]*=[ ]*\)[^\,]*,\1\"$out/share/texmf\",g" \ + -e "s,\$SELFAUTOLOC,$out,g" \ + -e "s,selfautodir:/,$out/share/,g" \ + -e "s,selfautodir:,$out/share/,g" \ + -e "s,selfautoparent:/,$out/share/,g" \ + -e "s,selfautoparent:,$out/share/,g" \ + "$cnfLuaOrig" > ./texmfcnf.lua + rm updmap.cfg ) '' + -- cgit 1.4.1 From 6643d18dacc88907aa026eb0bdb9eafaffe9d247 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Thu, 14 Apr 2016 16:26:44 +0000 Subject: pythonPackages.setuptools_scm_18: disable for isPy35 --- 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 50c2051c084ed..a8cdda5282d32 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19705,6 +19705,9 @@ in modules // { setuptools_scm_18 = self.setuptools_scm.override rec { name = "setuptools_scm-${version}"; version = "1.8.0"; + + # tests fail: ImportError: cannot import name 'find_files' + disabled = isPy35; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2"; -- cgit 1.4.1 From 0167b61ef45c3cf8223d67893956144c65d811bf Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Fri, 15 Apr 2016 21:46:42 +1000 Subject: dockerTools: only add "/nix" if it exists The /nix path in 4d200538 of the layer tar didn't exist for some packages, such as cacert. This is because cacert just creates an /etc directory and doesn't depend on any other /nix paths. If we tried putting this directory in the tar and using overlayfs with it, we'd get "Invalid argument" when trying to remove the directory. We now check whether the closure is non-empty before telling tar to store the /nix directory. Fixes #14710. --- pkgs/build-support/docker/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix index f874354b15ed8..5ead82dee8b51 100644 --- a/pkgs/build-support/docker/default.nix +++ b/pkgs/build-support/docker/default.nix @@ -286,17 +286,20 @@ EOF cp ${layer}/* temp/ chmod ug+w temp/* - # FIXME: might not be /nix/store - echo '/nix' >> layerFiles - echo '/nix/store' >> layerFiles for dep in $(cat $layerClosure); do - find $dep >> layerFiles + find $dep -path "${layer}" -prune -o -print >> layerFiles done + if [ -s layerFiles ]; then + # FIXME: might not be /nix/store + echo '/nix' >> layerFiles + echo '/nix/store' >> layerFiles + fi + echo Adding layer tar -tf temp/layer.tar >> baseFiles sed 's/^\.//' -i baseFiles - comm <(sort -n baseFiles|uniq) <(sort -n layerFiles|uniq|grep -v ${layer}) -1 -3 > newFiles + comm <(sort -u baseFiles) <(sort -u layerFiles) -1 -3 > newFiles tar -rpf temp/layer.tar --mtime=0 --no-recursion --files-from newFiles 2>/dev/null || true echo Adding meta -- cgit 1.4.1 From 08125c4a5f1918696ca41c6b0c6f4568fc18da30 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 13 Apr 2016 23:09:15 -0400 Subject: impatience gnome-shell extension: init --- pkgs/desktops/gnome-3/extensions/impatience.nix | 34 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 ++++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/gnome-3/extensions/impatience.nix diff --git a/pkgs/desktops/gnome-3/extensions/impatience.nix b/pkgs/desktops/gnome-3/extensions/impatience.nix new file mode 100644 index 0000000000000..d82ff652bd0fa --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/impatience.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, glib }: + +stdenv.mkDerivation rec { + name = "gnome-shell-impatience-${version}"; + version = "6564c21e4caf4a6bc5fe2bf21116d7c15408d494"; + + src = fetchFromGitHub { + owner = "timbertson"; + repo = "gnome-shell-impatience"; + rev = version; + sha256 = "10zyj42i07dcvaciv47qgkcs5g5n2bpc8a0m6fsimfi0442iwlcn"; + }; + + buildInputs = [ + glib + ]; + + buildPhase = '' + make schemas + ''; + + installPhase = '' + cp -r impatience $out + ''; + + uuid = "impatience@gfxmonk.net"; + + meta = with stdenv.lib; { + description = "Speed up builtin gnome-shell animations"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aneeshusa timbertson ]; + homepage = http://gfxmonk.net/dist/0install/gnome-shell-impatience.xml; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9e44ac3e0bb4c..1c10f0a0e2350 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15172,7 +15172,11 @@ in gnome3_18 = recurseIntoAttrs (callPackage ../desktops/gnome-3/3.18 { }); - gnome3 = self.gnome3_18; + gnome3 = self.gnome3_18 // { + shellExtensions = { + impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix {}; + }; + }; gnome = recurseIntoAttrs self.gnome2; -- cgit 1.4.1 From 74d7513a2ab38ae9fb5d1f8083b0ca5027497179 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 13 Apr 2016 23:09:52 -0400 Subject: volume-mixer gnome-shell extension: init --- pkgs/desktops/gnome-3/extensions/volume-mixer.nix | 34 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 35 insertions(+) create mode 100644 pkgs/desktops/gnome-3/extensions/volume-mixer.nix diff --git a/pkgs/desktops/gnome-3/extensions/volume-mixer.nix b/pkgs/desktops/gnome-3/extensions/volume-mixer.nix new file mode 100644 index 0000000000000..845d21f5219d5 --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/volume-mixer.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, glib }: + +stdenv.mkDerivation rec { + name = "gnome-shell-volume-mixer-${version}"; + version = "844ed80ad448855d8f6218847183a80474b523c7"; + + src = fetchFromGitHub { + owner = "aleho"; + repo = "gnome-shell-volume-mixer"; + rev = version; + sha256 = "1vcj2spbymhdi1nazvhldvcfgad23r3h7f0ihh4nianbxn7hjs9w"; + }; + + buildInputs = [ + glib + ]; + + buildPhase = '' + ${glib}/bin/glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas + ''; + + installPhase = '' + cp -r ${uuid} $out + ''; + + uuid = "shell-volume-mixer@derhofbauer.at"; + + meta = with stdenv.lib; { + description = "GNOME Shell Extension allowing separate configuration of PulseAudio devices"; + license = licenses.gpl2; + maintainers = with maintainers; [ aneeshusa ]; + homepage = https://github.com/aleho/gnome-shell-volume-mixer; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c10f0a0e2350..5a769ce4e4141 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15175,6 +15175,7 @@ in gnome3 = self.gnome3_18 // { shellExtensions = { impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix {}; + volume-mixer = callPackage ../desktops/gnome-3/extensions/volume-mixer.nix {}; }; }; -- cgit 1.4.1 From 54d2aaca6d8d715ac19ada782e6fcc0efdb3aeaf Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 13 Apr 2016 23:10:10 -0400 Subject: workspace-grid gnome-shell extension: init --- .../desktops/gnome-3/extensions/workspace-grid.nix | 30 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 31 insertions(+) create mode 100644 pkgs/desktops/gnome-3/extensions/workspace-grid.nix diff --git a/pkgs/desktops/gnome-3/extensions/workspace-grid.nix b/pkgs/desktops/gnome-3/extensions/workspace-grid.nix new file mode 100644 index 0000000000000..10aee5cafe6e3 --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/workspace-grid.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchFromGitHub, glib }: + +stdenv.mkDerivation rec { + name = "gnome-shell-workspace-grid-${version}"; + version = "0f3a430e7d04bb5465a17c1225aab0f574426d6b"; + + src = fetchFromGitHub { + owner = "zakkak"; + repo = "workspace-grid-gnome-shell-extension"; + rev = version; + sha256 = "0503b7lmydrbblfvf9b56pv5hpmykzgyc6v8y99rckg58h2jhs69"; + }; + + buildInputs = [ + glib + ]; + + installPhase = '' + cp -r ${uuid} $out + ''; + + uuid = "workspace-grid@mathematical.coffee.gmail.com"; + + meta = with stdenv.lib; { + description = "Arranges workspaces in a configurable grid"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aneeshusa ]; + homepage = https://github.com/zakkak/workspace-grid-gnome-shell-extension; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a769ce4e4141..d48ffe0ef557b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15176,6 +15176,7 @@ in shellExtensions = { impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix {}; volume-mixer = callPackage ../desktops/gnome-3/extensions/volume-mixer.nix {}; + workspace-grid = callPackage ../desktops/gnome-3/extensions/workspace-grid.nix {}; }; }; -- cgit 1.4.1 From 0e5122637b8d5f2b3e6328d9202e26ad26c81931 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Fri, 15 Apr 2016 16:18:15 -0400 Subject: system-monitor gnome-shell extension: init --- .../desktops/gnome-3/extensions/system-monitor.nix | 34 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 35 insertions(+) create mode 100644 pkgs/desktops/gnome-3/extensions/system-monitor.nix diff --git a/pkgs/desktops/gnome-3/extensions/system-monitor.nix b/pkgs/desktops/gnome-3/extensions/system-monitor.nix new file mode 100644 index 0000000000000..f9b13df7f7663 --- /dev/null +++ b/pkgs/desktops/gnome-3/extensions/system-monitor.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, glib }: + +stdenv.mkDerivation rec { + name = "gnome-shell-system-monitor-${version}"; + version = "8b31f070e9e59109d729661ced313d6a63e31787"; + + src = fetchFromGitHub { + owner = "paradoxxxzero"; + repo = "gnome-shell-system-monitor-applet"; + rev = version; + sha256 = "0fm5zb6qp53jjy2mnkb8ybxygzjwpb314giiq0ywq87hhrpch8m3"; + }; + + buildInputs = [ + glib + ]; + + buildPhase = '' + ${glib}/bin/glib-compile-schemas --targetdir=${uuid}/schemas ${uuid}/schemas + ''; + + installPhase = '' + cp -r ${uuid} $out + ''; + + uuid = "system-monitor@paradoxxx.zero.gmail.com"; + + meta = with stdenv.lib; { + description = "Display system informations in gnome shell status bar"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ aneeshusa ]; + homepage = https://github.com/paradoxxxzero/gnome-shell-system-monitor-applet; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d48ffe0ef557b..3d91d3beca12c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15175,6 +15175,7 @@ in gnome3 = self.gnome3_18 // { shellExtensions = { impatience = callPackage ../desktops/gnome-3/extensions/impatience.nix {}; + system-monitor = callPackage ../desktops/gnome-3/extensions/system-monitor.nix {}; volume-mixer = callPackage ../desktops/gnome-3/extensions/volume-mixer.nix {}; workspace-grid = callPackage ../desktops/gnome-3/extensions/workspace-grid.nix {}; }; -- cgit 1.4.1 From 77c413926230eb4fda6be41f666f5603129bbf73 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Mon, 4 Apr 2016 18:06:48 +0900 Subject: gtk3: make gtk3 look for immodule cache in $NIX_PROFILE --- .../libraries/gtk+/3.0-immodules.cache.patch | 27 ++++++++++++++++++++++ pkgs/development/libraries/gtk+/3.x.nix | 9 ++------ 2 files changed, 29 insertions(+), 7 deletions(-) create mode 100644 pkgs/development/libraries/gtk+/3.0-immodules.cache.patch diff --git a/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch b/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch new file mode 100644 index 0000000000000..bbe5f28dbd3ed --- /dev/null +++ b/pkgs/development/libraries/gtk+/3.0-immodules.cache.patch @@ -0,0 +1,27 @@ +--- a/gtk/deprecated/gtkrc.c 2016-04-02 18:43:08.401663112 +0900 ++++ b/gtk/deprecated/gtkrc.c 2016-04-02 18:29:19.927608592 +0900 +@@ -774,5 +774,23 @@ + if (var) + result = g_strdup (var); + ++ // check NIX_PROFILES paths. ++ const gchar *nixProfilesEnv = g_getenv ("NIX_PROFILES"); ++ gchar *cachePath; ++ guint i; ++ ++ if(nixProfilesEnv && !result){ ++ gchar **paths = g_strsplit(nixProfilesEnv, " ", -1); ++ for (i = 0; paths[i] != NULL; i++){ ++ cachePath = g_build_filename(paths[i], "etc", "gtk-3.0", "immodules.cache", NULL); ++ if( g_file_test( cachePath, G_FILE_TEST_EXISTS) ){ ++ if(result) g_free(result); ++ result = g_strdup(cachePath); ++ } ++ g_free(cachePath); ++ } ++ g_strfreev(paths); ++ } ++ + if (!result) + { + diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index a2da4c7b03391..45003e17f9736 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -28,6 +28,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ]; + patches = [ ./3.0-immodules.cache.patch ]; + buildInputs = [ libxkbcommon epoxy json_glib ]; propagatedBuildInputs = with xorg; with stdenv.lib; [ expat glib cairo pango gdk_pixbuf atk at_spi2_atk @@ -58,13 +60,6 @@ stdenv.mkDerivation rec { --replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib' ''; - passthru = { - gtkExeEnvPostBuild = '' - rm $out/lib/gtk-3.0/3.0.0/immodules.cache - $out/bin/gtk-query-immodules-3.0 $out/lib/gtk-3.0/3.0.0/immodules/*.so > $out/lib/gtk-3.0/3.0.0/immodules.cache - ''; # workaround for bug of nix-mode for Emacs */ ''; - }; - meta = with stdenv.lib; { description = "A multi-platform toolkit for creating graphical user interfaces"; -- cgit 1.4.1 From 3e2318ec3ecff70e1583ad5717f26f91ecdda952 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Sat, 9 Apr 2016 17:43:55 +0900 Subject: gtk2: make gtk2 look for immodule cache in $NIX_PROFILE --- .../libraries/gtk+/2.0-immodules.cache.patch | 27 ++++++++++++++++++++++ pkgs/development/libraries/gtk+/2.x.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/libraries/gtk+/2.0-immodules.cache.patch diff --git a/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch b/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch new file mode 100644 index 0000000000000..1b8231756e71f --- /dev/null +++ b/pkgs/development/libraries/gtk+/2.0-immodules.cache.patch @@ -0,0 +1,27 @@ +--- a/gtk/gtkrc.c 2014-09-30 05:02:17.000000000 +0900 ++++ b/gtk/gtkrc.c 2016-04-09 17:39:51.363288355 +0900 +@@ -445,5 +445,23 @@ + if (var) + result = g_strdup (var); + ++ // check NIX_PROFILES paths. ++ const gchar *nixProfilesEnv = g_getenv ("NIX_PROFILES"); ++ gchar *cachePath; ++ guint i; ++ ++ if(nixProfilesEnv && !result){ ++ gchar **paths = g_strsplit(nixProfilesEnv, " ", -1); ++ for (i = 0; paths[i] != NULL; i++){ ++ cachePath = g_build_filename(paths[i], "etc", "gtk-2.0", "immodules.cache", NULL); ++ if( g_file_test( cachePath, G_FILE_TEST_EXISTS) ){ ++ if(result) g_free(result); ++ result = g_strdup(cachePath); ++ } ++ g_free(cachePath); ++ } ++ g_strfreev(paths); ++ } ++ + if (!result) + { + diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix index d4d4cddb40239..f3ebc189cd7ae 100644 --- a/pkgs/development/libraries/gtk+/2.x.nix +++ b/pkgs/development/libraries/gtk+/2.x.nix @@ -26,6 +26,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ setupHook perl pkgconfig gettext ]; + patches = [ ./2.0-immodules.cache.patch ]; + propagatedBuildInputs = with xorg; with stdenv.lib; [ glib cairo pango gdk_pixbuf atk ] ++ optionals (stdenv.isLinux || stdenv.isDarwin) [ -- cgit 1.4.1 From cfe062f2b6e3c75a68f69104a1f87180004f1341 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Mon, 4 Apr 2016 18:11:20 +0900 Subject: input methods: fix gtk cache --- nixos/modules/config/system-path.nix | 2 ++ nixos/modules/i18n/input-method/default.nix | 42 ++++++++++++++++++++++++++--- nixos/modules/i18n/input-method/fcitx.nix | 2 +- nixos/modules/i18n/input-method/ibus.nix | 4 ++- nixos/modules/i18n/input-method/nabi.nix | 2 +- nixos/modules/i18n/input-method/uim.nix | 2 +- 6 files changed, 47 insertions(+), 7 deletions(-) diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index d7815324c4c4d..8c4170597826e 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -102,6 +102,8 @@ in environment.pathsToLink = [ "/bin" "/etc/xdg" + "/etc/gtk-2.0" + "/etc/gtk-3.0" "/info" "/lib" # FIXME: remove and update debug-info.nix "/sbin" diff --git a/nixos/modules/i18n/input-method/default.nix b/nixos/modules/i18n/input-method/default.nix index 7e6a25bfb0847..5d57a7f996668 100644 --- a/nixos/modules/i18n/input-method/default.nix +++ b/nixos/modules/i18n/input-method/default.nix @@ -1,10 +1,32 @@ { config, pkgs, lib, ... }: with lib; - +let + cfg = config.i18n.inputMethod; + gtk2_cache = pkgs.stdenv.mkDerivation { + preferLocalBuild = true; + allowSubstitutes = false; + name = "gtk2-immodule.cache"; + buildInputs = [ pkgs.gtk cfg.package ]; + buildCommand = '' + mkdir -p $out/etc/gtk-2.0/ + GTK_PATH=${cfg.package}/lib/gtk-2.0/ gtk-query-immodules-2.0 > $out/etc/gtk-2.0/immodules.cache + ''; + }; + gtk3_cache = pkgs.stdenv.mkDerivation { + preferLocalBuild = true; + allowSubstitutes = false; + name = "gtk3-immodule.cache"; + buildInputs = [ pkgs.gtk3 cfg.package ]; + buildCommand = '' + mkdir -p $out/etc/gtk-3.0/ + GTK_PATH=${cfg.package}/lib/gtk-3.0/ gtk-query-immodules-3.0 > $out/etc/gtk-3.0/immodules.cache + ''; + }; +in { - options = { - i18n.inputMethod = { + options.i18n = { + inputMethod = { enabled = mkOption { type = types.nullOr (types.enum [ "ibus" "fcitx" "nabi" "uim" ]); default = null; @@ -24,6 +46,20 @@ with lib; ''; }; + + package = mkOption { + internal = true; + type = types.path; + default = null; + description = '' + The input method method package. + ''; + }; }; }; + + config = mkIf (cfg.enabled != null) { + environment.systemPackages = [ cfg.package gtk2_cache gtk3_cache ]; + }; + } diff --git a/nixos/modules/i18n/input-method/fcitx.nix b/nixos/modules/i18n/input-method/fcitx.nix index 8e31743504f12..bdefd2d2d5961 100644 --- a/nixos/modules/i18n/input-method/fcitx.nix +++ b/nixos/modules/i18n/input-method/fcitx.nix @@ -32,7 +32,7 @@ in }; config = mkIf (config.i18n.inputMethod.enabled == "fcitx") { - environment.systemPackages = [ fcitxPackage ]; + i18n.inputMethod.package = fcitxPackage; environment.variables = { GTK_IM_MODULE = "fcitx"; diff --git a/nixos/modules/i18n/input-method/ibus.nix b/nixos/modules/i18n/input-method/ibus.nix index bb80f43634d37..097a662c3c6d0 100644 --- a/nixos/modules/i18n/input-method/ibus.nix +++ b/nixos/modules/i18n/input-method/ibus.nix @@ -41,9 +41,11 @@ in }; config = mkIf (config.i18n.inputMethod.enabled == "ibus") { + i18n.inputMethod.package = ibusPackage; + # Without dconf enabled it is impossible to use IBus environment.systemPackages = with pkgs; [ - ibusPackage ibus-qt gnome3.dconf ibusAutostart + ibus-qt gnome3.dconf ibusAutostart ]; environment.variables = { diff --git a/nixos/modules/i18n/input-method/nabi.nix b/nixos/modules/i18n/input-method/nabi.nix index c6708365effa0..87620ae4e7b2b 100644 --- a/nixos/modules/i18n/input-method/nabi.nix +++ b/nixos/modules/i18n/input-method/nabi.nix @@ -3,7 +3,7 @@ with lib; { config = mkIf (config.i18n.inputMethod.enabled == "nabi") { - environment.systemPackages = [ pkgs.nabi ]; + i18n.inputMethod.package = pkgs.nabi; environment.variables = { GTK_IM_MODULE = "nabi"; diff --git a/nixos/modules/i18n/input-method/uim.nix b/nixos/modules/i18n/input-method/uim.nix index f8a3e560656dd..7ad68bf851feb 100644 --- a/nixos/modules/i18n/input-method/uim.nix +++ b/nixos/modules/i18n/input-method/uim.nix @@ -22,7 +22,7 @@ in }; config = mkIf (config.i18n.inputMethod.enabled == "uim") { - environment.systemPackages = [ pkgs.uim ]; + i18n.inputMethod.package = pkgs.uim; environment.variables = { GTK_IM_MODULE = "uim"; -- cgit 1.4.1 From a047ba25f4ab932980460db588f7ef14602bc4a2 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:23:16 +0100 Subject: libiconv: fix on mingw --- pkgs/development/libraries/libiconv/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libiconv/default.nix b/pkgs/development/libraries/libiconv/default.nix index f5818c3bf4c90..9b62436ae080c 100644 --- a/pkgs/development/libraries/libiconv/default.nix +++ b/pkgs/development/libraries/libiconv/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, lib }: -assert (!stdenv.isLinux); +assert !stdenv.isLinux || stdenv ? cross; # TODO: improve on cross stdenv.mkDerivation rec { name = "libiconv-1.14"; @@ -15,6 +15,12 @@ stdenv.mkDerivation rec { ./libiconv-1.14-wchar.patch ]; + postPatch = + lib.optionalString (stdenv.cross.libc or null == "msvcrt") + '' + sed '/^_GL_WARN_ON_USE (gets/d' -i srclib/stdio.in.h + ''; + configureFlags = # On Cygwin, Libtool produces a `.dll.a', which is not a "real" DLL # (Windows' linker would need to be used somehow to produce an actual -- cgit 1.4.1 From 13df963c7eef2f2a6f469a881084bc5473d4cd88 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 4 Feb 2016 11:07:28 +0100 Subject: mingw: update 3.1.0 -> 4.0.6 --- pkgs/os-specific/windows/mingw-w64/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/windows/mingw-w64/default.nix b/pkgs/os-specific/windows/mingw-w64/default.nix index bf15b208e1a71..a9df0d29e09f9 100644 --- a/pkgs/os-specific/windows/mingw-w64/default.nix +++ b/pkgs/os-specific/windows/mingw-w64/default.nix @@ -4,14 +4,15 @@ }: let - name = "mingw-w64-3.1.0"; + version = "4.0.6"; + name = "mingw-w64-${version}"; in -stdenv.mkDerivation (rec { +stdenv.mkDerivation ({ inherit name; src = fetchurl { - url = "mirror://sourceforge/mingw-w64/mingw-w64-v3.1.0.tar.bz2"; - sha256 = "1lhpw381gc59w8b1r9zzdwa9cdi2wx6qx7s6rvajapmbw7ksgrzc"; + url = "mirror://sourceforge/mingw-w64/mingw-w64-v${version}.tar.bz2"; + sha256 = "0p01vm5kx1ixc08402z94g1alip4vx66gjpvyi9maqyqn2a76h0c"; }; } // (if onlyHeaders then { -- cgit 1.4.1 From 8b585cc9f555ac88970d8814641ad1488e8d9e9b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:33:04 -0500 Subject: phonon: 4.8.3 -> 4.9.0 - Removed phonon-backend-vlc. - Moved qt5.phonon to kde5.phonon. --- .../modules/services/x11/desktop-managers/kde5.nix | 36 +---------------- .../phonon-backend-gstreamer/qt4/default.nix | 33 ---------------- .../phonon-backend-gstreamer/qt5/default.nix | 39 ------------------- .../libraries/phonon-backend-vlc/qt4/default.nix | 32 --------------- .../libraries/phonon-backend-vlc/qt5/default.nix | 31 --------------- .../libraries/phonon/backends/gstreamer.nix | 45 ++++++++++++++++++++++ pkgs/development/libraries/phonon/default.nix | 27 ++++++------- pkgs/top-level/all-packages.nix | 17 +++----- 8 files changed, 65 insertions(+), 195 deletions(-) delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix delete mode 100644 pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix create mode 100644 pkgs/development/libraries/phonon/backends/gstreamer.nix diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 70dc1ac2a26af..f5d9d8b8e0db2 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -22,26 +22,6 @@ in description = "Enable the Plasma 5 (KDE 5) desktop environment."; }; - phonon = { - - gstreamer = { - enable = mkOption { - type = types.bool; - default = true; - description = "Enable the GStreamer Phonon backend (recommended)."; - }; - }; - - vlc = { - enable = mkOption { - type = types.bool; - default = false; - description = "Enable the VLC Phonon backend."; - }; - }; - - }; - }; }; @@ -141,26 +121,14 @@ in ++ lib.optionals cfg.phonon.gstreamer.enable [ - pkgs.phonon_backend_gstreamer - pkgs.gst_all.gstreamer - pkgs.gst_all.gstPluginsBase - pkgs.gst_all.gstPluginsGood - pkgs.gst_all.gstPluginsUgly - pkgs.gst_all.gstPluginsBad - pkgs.gst_all.gstFfmpeg # for mp3 playback - pkgs.qt55.phonon-backend-gstreamer + pkgs.phonon-backend-gstreamer + pkgs.kde5.phonon-backend-gstreamer pkgs.gst_all_1.gstreamer pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good pkgs.gst_all_1.gst-plugins-ugly pkgs.gst_all_1.gst-plugins-bad pkgs.gst_all_1.gst-libav # for mp3 playback - ] - - ++ lib.optionals cfg.phonon.vlc.enable - [ - pkgs.phonon_qt5_backend_vlc - pkgs.qt55.phonon-backend-vlc ]; environment.pathsToLink = [ "/share" ]; diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix deleted file mode 100644 index 2f588cbe7087b..0000000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt4/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv, fetchurl, cmake, automoc4, qt4, pkgconfig, phonon, gst_all_1 }: - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ phonon qt4 gstreamer gst-plugins-base ]; - - nativeBuildInputs = [ cmake automoc4 pkgconfig ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix b/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix deleted file mode 100644 index 98aa7d81b368c..0000000000000 --- a/pkgs/development/libraries/phonon-backend-gstreamer/qt5/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ stdenv, fetchurl, cmake, gst_all_1, phonon, pkgconfig, qtbase, debug ? false }: - -with stdenv.lib; - -let - version = "4.8.2"; - pname = "phonon-backend-gstreamer"; -in - -stdenv.mkDerivation rec { - name = "${pname}-${version}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "1q1ix6zsfnh6gfnpmwp67s376m7g7ahpjl1qp2fqakzb5cgzgq10"; - }; - - buildInputs = with gst_all_1; [ gstreamer gst-plugins-base phonon qtbase ]; - - NIX_CFLAGS_COMPILE = [ - # This flag should be picked up through pkgconfig, but it isn't. - "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" - ]; - - nativeBuildInputs = [ cmake pkgconfig ]; - - cmakeFlags = [ - "-DCMAKE_INSTALL_LIBDIR=lib" - "-DPHONON_BUILD_PHONON4QT5=ON" - ] - ++ optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = with stdenv.lib; { - homepage = http://phonon.kde.org/; - description = "GStreamer backend for Phonon"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix b/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix deleted file mode 100644 index 70b6174c635c8..0000000000000 --- a/pkgs/development/libraries/phonon-backend-vlc/qt4/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchurl, xz, vlc, automoc4, cmake, pkgconfig, phonon, qt4}: - -with stdenv.lib; - -let - pname = "phonon-backend-vlc"; - v = "0.8.1"; - # Force same Qt version in phonon and VLC - vlc_ = vlc.override { inherit qt4; }; - phonon_ = phonon.override { inherit qt4; }; -in - -stdenv.mkDerivation { - name = "${pname}-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; - sha256 = "1fyfh7qyb6rld350v2fgz452ld96d3z5ifchr323q0vc3hb9k222"; - }; - - nativeBuildInputs = [ cmake pkgconfig automoc4 xz ]; - - buildInputs = [ vlc_ phonon_ qt4 ]; - - meta = { - homepage = http://phonon.kde.org/; - description = "VideoLAN backend for Phonon multimedia framework"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel urkud ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix b/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix deleted file mode 100644 index 744d681a6949a..0000000000000 --- a/pkgs/development/libraries/phonon-backend-vlc/qt5/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ stdenv, fetchurl, xz, vlc, cmake, pkgconfig, phonon, qtbase }: - -with stdenv.lib; - -let - pname = "phonon-backend-vlc"; - v = "0.8.2"; -in - -stdenv.mkDerivation { - name = "${pname}-${v}"; - - src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; - sha256 = "18ysdga681my75lxxv5h242pa4qappvg5z73wnc0ks9yypnzidys"; - }; - - nativeBuildInputs = [ cmake pkgconfig xz ]; - - buildInputs = [ vlc phonon qtbase ]; - - cmakeFlags = ["-DPHONON_BUILD_PHONON4QT5=ON"]; - - meta = { - homepage = http://phonon.kde.org/; - description = "VideoLAN backend for Phonon multimedia framework"; - platforms = platforms.linux; - maintainers = with maintainers; [ ttuegel urkud ]; - license = licenses.lgpl21Plus; - }; -} diff --git a/pkgs/development/libraries/phonon/backends/gstreamer.nix b/pkgs/development/libraries/phonon/backends/gstreamer.nix new file mode 100644 index 0000000000000..756db94e34377 --- /dev/null +++ b/pkgs/development/libraries/phonon/backends/gstreamer.nix @@ -0,0 +1,45 @@ +{ stdenv, lib, fetchurl, cmake, gst_all_1, phonon, pkgconfig +, extra-cmake-modules ? null, qtbase ? null, qtx11extras ? null, qt4 ? null +, debug ? false }: + +with lib; + +let + v = "4.9.0"; + pname = "phonon-backend-gstreamer"; + withQt5 = extra-cmake-modules != null; +in + +assert withQt5 -> qtbase != null; +assert withQt5 -> qtx11extras != null; + +stdenv.mkDerivation rec { + name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}"; + + meta = with stdenv.lib; { + homepage = http://phonon.kde.org/; + description = "GStreamer backend for Phonon"; + platforms = platforms.linux; + maintainers = with maintainers; [ ttuegel ]; + }; + + src = fetchurl { + url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + sha256 = "1wc5p1rqglf0n1avp55s50k7fjdzdrhg0gind15k8796w7nfbhyf"; + }; + + buildInputs = with gst_all_1; + [ gstreamer gst-plugins-base phonon ] + ++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]); + + NIX_CFLAGS_COMPILE = [ + # This flag should be picked up through pkgconfig, but it isn't. + "-I${gst_all_1.gstreamer}/lib/gstreamer-1.0/include" + ]; + + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ] + ++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON"; +} diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 3c731ca19e329..7f3a2d773cf59 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -1,21 +1,20 @@ -{ stdenv, fetchurl, cmake, mesa, pkgconfig, libpulseaudio -, qt4 ? null, automoc4 ? null -, qtbase ? null, qtquick1 ? null, qttools ? null +{ stdenv, lib, fetchurl, cmake, mesa, pkgconfig, libpulseaudio +, qt4 ? null, extra-cmake-modules ? null, qtbase ? null, qtquick1 ? null, qttools ? null , debug ? false }: -with stdenv.lib; +with lib; let - v = "4.8.3"; - withQt5 = qtbase != null; + v = "4.9.0"; + withQt5 = extra-cmake-modules != null; in +assert withQt5 -> qtbase != null; assert withQt5 -> qtquick1 != null; assert withQt5 -> qttools != null; -assert !withQt5 -> automoc4 != null; stdenv.mkDerivation rec { - name = "phonon-${v}"; + name = "phonon-${if withQt5 then "qt5" else "qt4"}-${v}"; meta = { homepage = http://phonon.kde.org/; @@ -27,16 +26,14 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; - sha256 = "05nshngk03ln90vsjz44dx8al576f4vd5fvhs1l0jmx13jb9q551"; + sha256 = "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"; }; buildInputs = [ mesa libpulseaudio ] ++ (if withQt5 then [ qtbase qtquick1 qttools ] else [ qt4 ]); - nativeBuildInputs = - [ cmake pkgconfig ] - ++ optional (!withQt5) automoc4; + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; NIX_CFLAGS_COMPILE = "-fPIC"; @@ -47,8 +44,8 @@ stdenv.mkDerivation rec { postPatch = '' sed -i PhononConfig.cmake.in \ -e "/get_filename_component(rootDir/ s/^.*$//" \ - -e "s,\\(set(PHONON_INCLUDE_DIR\\).*$,\\1 \"''${!outputDev}/include\")," \ - -e "s,\\(set(PHONON_LIBRARY_DIR\\).*$,\\1 \"''${!outputLib}/lib\")," \ - -e "s,\\(set(PHONON_BUILDSYSTEM_DIR\\).*$,\\1 \"''${!outputDev}/share/phonon${if withQt5 then "4qt5" else ""}/buildsystem\")," + -e "/^set(PHONON_INCLUDE_DIR/ s,\''${rootDir},''${!outputDev}," \ + -e "/^set(PHONON_LIBRARY_DIR/ s,\''${rootDir}/,," \ + -e "/^set(PHONON_BUILDSYSTEM_DIR/ s,\''${rootDir},''${!outputDev}," ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7eb9741b2404b..ed5684073cad0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8437,9 +8437,7 @@ in phonon = callPackage ../development/libraries/phonon {}; - phonon_backend_gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt4 {}; - - phonon_backend_vlc = callPackage ../development/libraries/phonon-backend-vlc/qt4 {}; + phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {}; physfs = callPackage ../development/libraries/physfs { }; @@ -8576,12 +8574,6 @@ in openbr = callPackage ../development/libraries/openbr { }; - phonon = callPackage ../development/libraries/phonon { }; - - phonon-backend-gstreamer = callPackage ../development/libraries/phonon-backend-gstreamer/qt5 { }; - - phonon-backend-vlc = callPackage ../development/libraries/phonon-backend-vlc/qt5 { }; - polkit-qt = callPackage ../development/libraries/polkit-qt-1/qt-5.nix { }; poppler = callPackage ../development/libraries/poppler { @@ -15461,8 +15453,11 @@ in kile = callPackage ../applications/editors/kile/frameworks.nix { }; - konversation = callPackage ../applications/networking/irc/konversation/1.6.nix { - }; + konversation = callPackage ../applications/networking/irc/konversation/1.6.nix { }; + + phonon = callPackage ../development/libraries/phonon { }; + + phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { }; quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { monolithic = true; -- cgit 1.4.1 From b4ff81ffd629d3f699b880ad62eaabf364a32d1d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 22 Apr 2016 08:11:10 -0500 Subject: phonon-backend-vlc: init at 0.9.0 --- .../modules/services/x11/desktop-managers/kde4.nix | 4 +-- pkgs/applications/audio/tomahawk/default.nix | 4 +-- pkgs/applications/graphics/digikam/default.nix | 6 ++-- pkgs/applications/video/minitube/default.nix | 6 ++-- pkgs/development/libraries/phonon/backends/vlc.nix | 39 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 6 files changed, 53 insertions(+), 10 deletions(-) create mode 100644 pkgs/development/libraries/phonon/backends/vlc.nix diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix index 80e408be49237..3b639f672170a 100644 --- a/nixos/modules/services/x11/desktop-managers/kde4.nix +++ b/nixos/modules/services/x11/desktop-managers/kde4.nix @@ -29,7 +29,7 @@ let phononBackends = { gstreamer = [ - pkgs.phonon_backend_gstreamer + pkgs.phonon-backend-gstreamer pkgs.gst_all.gstPluginsBase pkgs.gst_all.gstPluginsGood pkgs.gst_all.gstPluginsUgly @@ -38,7 +38,7 @@ let pkgs.gst_all.gstreamer # needed? ]; - vlc = [pkgs.phonon_backend_vlc]; + vlc = [pkgs.phonon-backend-vlc]; }; phononBackendPackages = flip concatMap cfg.phononBackends diff --git a/pkgs/applications/audio/tomahawk/default.nix b/pkgs/applications/audio/tomahawk/default.nix index 61cb6b9896e32..7021cd165cfd4 100644 --- a/pkgs/applications/audio/tomahawk/default.nix +++ b/pkgs/applications/audio/tomahawk/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cmake, pkgconfig, attica, boost, gnutls, libechonest -, liblastfm, lucenepp, phonon, phonon_backend_vlc, qca2, qjson, qt4 +, liblastfm, lucenepp, phonon, phonon-backend-vlc, qca2, qjson, qt4 , qtkeychain, quazip, sparsehash, taglib, websocketpp, makeWrapper , enableXMPP ? true, libjreen ? null @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { postInstall = let pluginPath = stdenv.lib.concatStringsSep ":" [ - "${phonon_backend_vlc}/lib/kde4/plugins" + "${phonon-backend-vlc}/lib/kde4/plugins" ]; in '' for i in "$out"/bin/*; do diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index 119125066bda0..453dc08099564 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -19,7 +19,7 @@ # Supplementary packages required only by the wrapper. , bash, kde_runtime, kde_baseapps, makeWrapper, oxygen_icons -, phonon_backend_vlc /*phonon_backend_gstreamer,*/ +, phonon-backend-vlc /*phonon-backend-gstreamer,*/ , ffmpegthumbs /*mplayerthumbs*/ , runCommand, shared_mime_info, writeScriptBin }: @@ -93,7 +93,7 @@ let kdePkgs = [ build # digikam's own build kdelibs kdepimlibs kde_runtime kde_baseapps libkdcraw oxygen_icons - /*phonon_backend_gstreamer*/ phonon_backend_vlc + /*phonon-backend-gstreamer*/ phonon-backend-vlc ffmpegthumbs /*mplayerthumbs*/ shared_mime_info ] # Optional build time dependencies ++ [ @@ -208,7 +208,7 @@ TODO - Per lib `KDELIBS` environment variable export. See above in-code TODO comment. - Missing optional `qt_soap` or `herqq` (av + normal package) dependencies. Those are not yet (or not fully) packaged in nix. Mainly required for upnp export. - - Possibility to use the `phonon_backend_gstreamer` with its own user specified set of backend. + - Possibility to use the `phonon-backend-gstreamer` with its own user specified set of backend. - Allow user to disable optional features or dependencies reacting properly. - Compile `kipiplugins` as a separate package (so that it can be used by other kde packages and so that this package's build time is reduced). diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index 1a621032125b6..971588901b468 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon_backend_vlc, qt4, qmake4Hook +{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon-backend-vlc, qt4, qmake4Hook # "Free" API key generated by nckx , withAPIKey ? "AIzaSyBtFgbln3bu1swQC-naMxMtKh384D3xJZE" }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { owner = "flaviotordini"; }; - buildInputs = [ phonon phonon_backend_vlc qt4 ]; + buildInputs = [ phonon phonon-backend-vlc qt4 ]; nativeBuildInputs = [ makeWrapper qmake4Hook ]; qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ]; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/minitube \ - --prefix QT_PLUGIN_PATH : "${phonon_backend_vlc}/lib/kde4/plugins" + --prefix QT_PLUGIN_PATH : "${phonon-backend-vlc}/lib/kde4/plugins" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix new file mode 100644 index 0000000000000..1f14ec575a0e2 --- /dev/null +++ b/pkgs/development/libraries/phonon/backends/vlc.nix @@ -0,0 +1,39 @@ +{ stdenv, lib, fetchurl, cmake, phonon, pkgconfig, vlc +, extra-cmake-modules ? null, qtbase ? null, qtx11extras ? null, qt4 ? null +, debug ? false }: + +with lib; + +let + v = "0.9.0"; + pname = "phonon-backend-vlc"; + withQt5 = extra-cmake-modules != null; +in + +assert withQt5 -> qtbase != null; +assert withQt5 -> qtx11extras != null; + +stdenv.mkDerivation rec { + name = "${pname}-${if withQt5 then "qt5" else "qt4"}-${v}"; + + meta = with stdenv.lib; { + homepage = http://phonon.kde.org/; + description = "GStreamer backend for Phonon"; + platforms = platforms.linux; + }; + + src = fetchurl { + url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + sha256 = "1gnd1j305mqajw5gxm42vg6ajkvi8611bxgc3qhj5k0saz5dgkn0"; + }; + + buildInputs = + [ phonon vlc ] + ++ (if withQt5 then [ qtbase qtx11extras ] else [ qt4 ]); + + nativeBuildInputs = [ cmake pkgconfig ] ++ optional withQt5 extra-cmake-modules; + + cmakeFlags = + [ "-DCMAKE_BUILD_TYPE=${if debug then "Debug" else "Release"}" ] + ++ optional withQt5 "-DPHONON_BUILD_PHONON4QT5=ON"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ed5684073cad0..db687ba4a5d85 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8439,6 +8439,8 @@ in phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix {}; + phonon-backend-vlc = callPackage ../development/libraries/phonon/backends/vlc.nix {}; + physfs = callPackage ../development/libraries/physfs { }; pipelight = callPackage ../tools/misc/pipelight { @@ -15459,6 +15461,8 @@ in phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { }; + phonon-backend-vlc = callPackage ../development/libraries/phonon/backends/vlc.nix { }; + quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix { monolithic = true; daemon = false; -- cgit 1.4.1 From 48195dd2becfa820353e900ba05737b4fce1b466 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 22 Apr 2016 08:21:15 -0500 Subject: aliases: remove phonon aliases --- pkgs/top-level/aliases.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 23e05eb6c9e45..523163e37f55e 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -64,8 +64,6 @@ doNotDisplayTwice rec { mupen64plus1_5 = mupen64plus; # added 2016-02-12 ncat = nmap; # added 2016-01-26 nfsUtils = nfs-utils; # added 2014-12-06 - phonon_qt5 = qt5.phonon; # added 2015-12-19 - phonon_qt5_backend_gstreamer = qt5.phonon-backend-gstreamer; # added 2015-12-19 pidginlatexSF = pidginlatex; # added 2014-11-02 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 -- cgit 1.4.1 From 97e4c19fcaa01fcc7f456f3896cbddccb25a6bb6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 22 Apr 2016 19:30:26 +0300 Subject: wrapPython: drop python suffixes --- pkgs/development/python-modules/generic/wrap.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/generic/wrap.sh b/pkgs/development/python-modules/generic/wrap.sh index fa6a4d0102f36..a67ea51f5a9b1 100644 --- a/pkgs/development/python-modules/generic/wrap.sh +++ b/pkgs/development/python-modules/generic/wrap.sh @@ -28,8 +28,10 @@ wrapPythonProgramsIn() { # Find all regular files in the output directory that are executable. for f in $(find "$dir" -type f -perm -0100); do # Rewrite "#! .../env python" to "#! /nix/store/.../python". + # Strip suffix, like "3" or "2.7m" -- we don't have any choice on which + # Python to use besides one in $python anyway. if head -n1 "$f" | grep -q '#!.*/env.*\(python\|pypy\)'; then - sed -i "$f" -e "1 s^.*/env[ ]*\(python\|pypy\)^#! $python^" + sed -i "$f" -e "1 s^.*/env[ ]*\(python\|pypy\)[^ ]*^#! $python^" fi # catch /python and /.python-wrapped -- cgit 1.4.1 From 6ea0ae58af611ab30c42e2e51f3a70141e93a9a9 Mon Sep 17 00:00:00 2001 From: Guido Zgraggen Date: Fri, 22 Apr 2016 16:51:49 -0700 Subject: nix-prefetch-git: create parent directories --- pkgs/build-support/fetchgit/nix-prefetch-git | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index 9352757ea806e..80544b745177f 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -343,7 +343,7 @@ fi if test -n "$builder"; then test -n "$out" -a -n "$url" -a -n "$rev" || usage - mkdir $out + mkdir -p $out clone_user_rev "$out" "$url" "$rev" else if test -z "$hashType"; then @@ -368,7 +368,7 @@ else trap "rm -rf \"$tmpPath\"" EXIT tmpFile="$tmpPath/$(url_to_name "$url" "$rev")" - mkdir "$tmpFile" + mkdir -p "$tmpFile" # Perform the checkout. clone_user_rev "$tmpFile" "$url" "$rev" -- cgit 1.4.1 From 6e7787e666c50558b5aa10ffcca8e6c0c9bc1ba3 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 21:18:34 +0100 Subject: stdenv for windows: auto-link dependency DLLs For every *.{exe,dll} in $output/bin/ we try to find all (potential) transitive dependencies and symlink those DLLs into $output/bin so they are found on invocation. (DLLs are first searched in the directory of the running exe file.) The links are relative, so relocating whole /nix/store won't break them. The hook is activated on cygwin and when cross-compiling to mingw. --- pkgs/build-support/setup-hooks/win-dll-link.sh | 45 ++++++++++++++++++++++++++ pkgs/stdenv/generic/default.nix | 8 ++++- 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 pkgs/build-support/setup-hooks/win-dll-link.sh diff --git a/pkgs/build-support/setup-hooks/win-dll-link.sh b/pkgs/build-support/setup-hooks/win-dll-link.sh new file mode 100644 index 0000000000000..be63f69ca10b3 --- /dev/null +++ b/pkgs/build-support/setup-hooks/win-dll-link.sh @@ -0,0 +1,45 @@ + +fixupOutputHooks+=(_linkDLLs) + +# For every *.{exe,dll} in $output/bin/ we try to find all (potential) +# transitive dependencies and symlink those DLLs into $output/bin +# so they are found on invocation. +# (DLLs are first searched in the directory of the running exe file.) +# The links are relative, so relocating whole /nix/store won't break them. +_linkDLLs() { +( + if [ ! -d "$prefix/bin" ]; then exit; fi + cd "$prefix/bin" + + # Compose path list where DLLs should be located: + # prefix $PATH by currently-built outputs + local DLLPATH="" + local outName + for outName in $outputs; do + addToSearchPath DLLPATH "${!outName}/bin" + done + DLLPATH="$DLLPATH:$PATH" + + echo DLLPATH="'$DLLPATH'" + + linkCount=0 + # Iterate over any DLL that we depend on. + local dll + for dll in $(objdump -p *.{exe,dll} | sed -n 's/.*DLL Name: \(.*\)/\1/p' | sort -u); do + if [ -e "./$dll" ]; then continue; fi + # Locate the DLL - it should be an *executable* file on $DLLPATH. + local dllPath="$(PATH="$DLLPATH" type -P "$dll")" + if [ -z "$dllPath" ]; then continue; fi + # That DLL might have its own (transitive) dependencies, + # so add also all DLLs from its directory to be sure. + local dllPath2 + for dllPath2 in "$dllPath" "$(dirname "$dllPath")"/*.dll; do + if [ -e ./"$(basename "$dllPath2")" ]; then continue; fi + ln -sr "$dllPath2" . + linkCount=$(($linkCount+1)) + done + done + echo "Created $linkCount DLL link(s) in $prefix/bin" +) +} + diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 547541d28246e..e01be369f423a 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -196,7 +196,13 @@ let buildInputs = if crossConfig != null then buildInputs' else []; propagatedBuildInputs = if crossConfig != null then propagatedBuildInputs else []; # Inputs built by the usual native compiler. - nativeBuildInputs = nativeBuildInputs ++ (if crossConfig == null then buildInputs' else []); + nativeBuildInputs = nativeBuildInputs + ++ lib.optionals (crossConfig == null) buildInputs' + ++ lib.optional + (result.isCygwin + || (crossConfig != null && lib.hasSuffix "mingw32" crossConfig)) + ../../build-support/setup-hooks/win-dll-link.sh + ; propagatedNativeBuildInputs = propagatedNativeBuildInputs ++ (if crossConfig == null then propagatedBuildInputs else []); } // ifDarwin { -- cgit 1.4.1 From afaf1c2f77b0f30feaa155aa1ecd67353cd70896 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 21 Apr 2016 14:24:41 +0200 Subject: gettext: remove crossAttrs They seem not needed anymore. --- pkgs/development/libraries/gettext/default.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index 940df56c03c37..78a8756b59b4e 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -54,13 +54,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - crossAttrs = { - buildInputs = lib.optional (stdenv ? ccCross && stdenv.ccCross.libc ? libiconv) - stdenv.ccCross.libc.libiconv.crossDrv; - # Gettext fails to guess the cross compiler - configureFlags = "CXX=${stdenv.cross.config}-g++"; - }; - meta = { description = "Well integrated set of translation tools and documentation"; -- cgit 1.4.1 From 8b292a1b355e8e7f6e7a2cf439ab777bdae30422 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 14 Apr 2016 08:59:47 +0200 Subject: stdenv on mingw: fix 64-bin DLL detection in some cases In particular, this makes 64-bit libpng create DLL now, and thus depending packages won't fail anymore (e.g. freetype). --- pkgs/stdenv/adapters.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/stdenv/adapters.nix b/pkgs/stdenv/adapters.nix index 87d3938f13d39..0b6707bf8b167 100644 --- a/pkgs/stdenv/adapters.nix +++ b/pkgs/stdenv/adapters.nix @@ -96,8 +96,12 @@ rec { name = name + "-" + cross.config; nativeBuildInputs = nativeBuildInputsDrvs ++ nativeInputsFromBuildInputs - ++ [ gccCross binutilsCross ] ++ - stdenv.lib.optional selfNativeBuildInput nativeDrv; + ++ [ gccCross binutilsCross ] + ++ stdenv.lib.optional selfNativeBuildInput nativeDrv + # without proper `file` command, libtool sometimes fails + # to recognize 64-bit DLLs + ++ stdenv.lib.optional (cross.config == "x86_64-w64-mingw32") pkgs.file + ; # Cross-linking dynamic libraries, every buildInput should # be propagated because ld needs the -rpath-link to find -- cgit 1.4.1 From 91f2b9ed663bc58c2305edf2d52b4e54228394c4 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 21 Apr 2016 15:37:52 +0200 Subject: bzip2: fix on mingw The whole expression is rather a mess, mainly due to upstream often behaving badly with non-standard configurations. --- pkgs/tools/compression/bzip2/default.nix | 51 ++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/pkgs/tools/compression/bzip2/default.nix b/pkgs/tools/compression/bzip2/default.nix index a165ab2b157bb..d3ed5121ba988 100644 --- a/pkgs/tools/compression/bzip2/default.nix +++ b/pkgs/tools/compression/bzip2/default.nix @@ -35,10 +35,6 @@ in stdenv.mkDerivation { sed -i -e '//s|\\|/|' bzip2.c ''; preConfigure = "sh ./autogen.sh"; - # clear native hooks that are not needed with autoconf - preBuild = ""; - preInstall = ""; - postInstall = ""; }; outputs = [ "dev" "bin" "static" ] ++ stdenv.lib.optional sharedLibrary "out"; @@ -47,21 +43,23 @@ in stdenv.mkDerivation { make -f ${if stdenv.isDarwin then "Makefile-libbz2_dylib" else "Makefile-libbz2_so"} ''; - preInstall = stdenv.lib.optionalString sharedLibrary (if !stdenv.isDarwin then '' - mkdir -p $out/lib - mv libbz2.so* $out/lib - ( cd $out/lib && - ln -s libbz2.so.1.0.? libbz2.so && - ln -s libbz2.so.1.0.? libbz2.so.1 - ) - '' else '' - mkdir -p $out/lib - mv libbz2.*.dylib $out/lib - ( cd $out/lib && - ln -s libbz2.1.0.?.dylib libbz2.dylib && - ln -s libbz2.1.0.?.dylib libbz2.1.dylib - ) - ''); + preInstall = stdenv.lib.optionalString + (sharedLibrary && stdenv.cross.libc or null != "msvcrt") + (if !stdenv.isDarwin then '' + mkdir -p $out/lib + mv libbz2.so* $out/lib + ( cd $out/lib && + ln -s libbz2.so.1.0.? libbz2.so && + ln -s libbz2.so.1.0.? libbz2.so.1 + ) + '' else '' + mkdir -p $out/lib + mv libbz2.*.dylib $out/lib + ( cd $out/lib && + ln -s libbz2.1.0.?.dylib libbz2.dylib && + ln -s libbz2.1.0.?.dylib libbz2.1.dylib + ) + ''); installFlags = [ "PREFIX=$(bin)" ]; @@ -70,9 +68,18 @@ in stdenv.mkDerivation { ln -s bzip2 $bin/bin/bunzip2 ln -s bzip2 $bin/bin/bzcat - mkdir "$static" - mv "$bin/lib" "$static/" - ''; + '' + + (if stdenv.cross.libc or null != "msvcrt" # mingw TODO: avoided rebuilds for now + then '' + mkdir "$static" + mv "$bin/lib" "$static/" + '' + else '' + moveToOutput "lib/*.a" "$static" + moveToOutput "lib/*.dll.a" "$out" + mkdir -p "$static" # empty for now, but we want to avoid failure + '') + ; postPatch = '' substituteInPlace Makefile --replace CC=gcc CC=cc -- cgit 1.4.1 From 94eba251038cc3177f312e122c28bfbb0cc92ebc Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:37:04 +0100 Subject: libxml2: fix on mingw, without DLLs ATM After closure-size merge we need to disable python support, as python upstream doesn't support cross-building linux -> mingw. --- pkgs/development/libraries/libxml2/default.nix | 35 ++++++++++++++++++-------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index f7e175373e120..769169104ab34 100644 --- a/pkgs/development/libraries/libxml2/default.nix +++ b/pkgs/development/libraries/libxml2/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, zlib, xz, python, findXMLCatalogs }: +{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv +, supportPython ? (! stdenv ? cross) }: stdenv.mkDerivation rec { name = "libxml2-${version}"; @@ -9,23 +10,35 @@ stdenv.mkDerivation rec { sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad"; }; - outputs = [ "dev" "out" "bin" "doc" "py" ]; - propagatedBuildOutputs = "out bin py"; + outputs = [ "dev" "out" "bin" "doc" ] + ++ lib.optional supportPython "py"; + propagatedBuildOutputs = "out bin" + lib.optionalString supportPython " py"; - buildInputs = [ python ] + buildInputs = lib.optional supportPython python # Libxml2 has an optional dependency on liblzma. However, on impure # platforms, it may end up using that from /usr/lib, and thus lack a # RUNPATH for that, leading to undefined references for its users. - ++ stdenv.lib.optional stdenv.isFreeBSD xz; + ++ lib.optional stdenv.isFreeBSD xz; propagatedBuildInputs = [ zlib findXMLCatalogs ]; - configureFlags = "--with-python=${python}"; + configureFlags = lib.optional supportPython "--with-python=${python}"; enableParallelBuilding = true; - preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; - installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"''; + crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") { + # creating the DLL is broken ATM + dontDisableStatic = true; + configureFlags = configureFlags ++ [ "--disable-shared" ]; + + # libiconv is a header dependency - propagating is enough + propagatedBuildInputs = [ findXMLCatalogs libiconv ]; + }; + + preInstall = lib.optionalString supportPython + ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; + installFlags = lib.optionalString supportPython + ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"''; postFixup = '' moveToOutput bin/xml2-config "$dev" @@ -33,13 +46,13 @@ stdenv.mkDerivation rec { moveToOutput share/man/man1 "$bin" ''; - passthru = { inherit version; pythonSupport = true; }; + passthru = { inherit version; pythonSupport = supportPython; }; meta = { homepage = http://xmlsoft.org/; description = "An XML parsing library for C"; license = "bsd"; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = lib.platforms.unix; + maintainers = [ lib.maintainers.eelco ]; }; } -- cgit 1.4.1 From 49bec8173026c1a050829b43447a4a8f8ca850ed Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 15:37:48 +0100 Subject: libxslt: fix on mingw by upstream patch It's only static, as libxml2 is only static ATM. --- pkgs/development/libraries/libxslt/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix index 0eda42879ece8..c76f282460476 100644 --- a/pkgs/development/libraries/libxslt/default.nix +++ b/pkgs/development/libraries/libxslt/default.nix @@ -9,6 +9,12 @@ stdenv.mkDerivation rec { }; patches = stdenv.lib.optional stdenv.isSunOS ./patch-ah.patch + ++ stdenv.lib.optional (stdenv.cross.libc or null == "msvcrt") + (fetchpatch { + name = "mingw.patch"; + url = "http://git.gnome.org/browse/libxslt/patch/?id=ab5810bf27cd63"; + sha256 = "0kkqq3fv2k3q86al38vp6zwxazpvp5kslcjnmrq4ax5cm2zvsjk3"; + }) ++ [ (fetchpatch { name = "CVE-2015-7995.patch"; -- cgit 1.4.1 From 80509ab287687591ba179535bfc1cec88013a0d9 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 19:14:18 +0100 Subject: libpng: fix on mingw by disabling doCheck --- pkgs/development/libraries/libpng/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index 6faed97aaee28..a5a0e1d42a380 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -26,7 +26,9 @@ in stdenv.mkDerivation rec { preConfigure = "export bin=$dev"; - doCheck = true; + # it's hard to cross-run tests and some check programs didn't compile anyway + makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS="; + doCheck = ! stdenv ? cross; postInstall = ''mv "$out/bin" "$dev/bin"''; -- cgit 1.4.1 From 321ecde8a163cdde9e39df277288e9ff3817f4df Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 21 Apr 2016 16:12:50 +0200 Subject: zlib: on mingw, add another DLL link Also clean up the expression a little. It fixes at least libpng's DLL. --- pkgs/development/libraries/zlib/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 59713bb8d205e..f7a72a7673a15 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -52,14 +52,21 @@ stdenv.mkDerivation rec { crossAttrs = { dontStrip = static; + dontSetConfigureCross = true; } // stdenv.lib.optionalAttrs (stdenv.cross.libc == "msvcrt") { - configurePhase='' - installFlags="BINARY_PATH=$out/bin INCLUDE_PATH=$out/include LIBRARY_PATH=$out/lib" - ''; + installFlags = [ + "BINARY_PATH=$(out)/bin" + "INCLUDE_PATH=$(dev)/include" + "LIBRARY_PATH=$(out)/lib" + ]; makeFlags = [ "-f" "win32/Makefile.gcc" "PREFIX=${stdenv.cross.config}-" - ] ++ (if static then [] else [ "SHARED_MODE=1" ]); + ] ++ stdenv.lib.optional (!static) "SHARED_MODE=1"; + + # Non-typical naming confuses libtool which then refuses to use zlib's DLL + # in some cases, e.g. when compiling libpng. + postInstall = postInstall + "ln -s zlib1.dll $out/bin/libz.dll"; } // stdenv.lib.optionalAttrs (stdenv.cross.libc == "libSystem") { makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ]; }; -- cgit 1.4.1 From bd3d377e5eff3521de386c298c9bd89b132f2ad0 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 9 Feb 2016 19:27:14 +0100 Subject: freetype: fix on mingw --- pkgs/development/libraries/freetype/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index 81e98056e90b2..0548d1433b754 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -26,7 +26,8 @@ stdenv.mkDerivation rec { }; patches = [] - ++ optionals useEncumberedCode [ + # mingw: these patches use `strcasestr` which isn't available on windows + ++ optionals (useEncumberedCode && stdenv.cross.libc or null != "msvcrt" ) [ (fetchbohoomil "01-freetype-2.6.2-enable-valid.patch" "1szq0zha7n41f4pq179wgfkam034mp2xn0xc36sdl5sjp9s9hv08") (fetchbohoomil "02-upstream-2015.12.05.patch" @@ -39,7 +40,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype # dependence on harfbuzz is looser than the reverse dependence - buildInputs = [ pkgconfig which ] + nativeBuildInputs = [ pkgconfig which ] # FreeType requires GNU Make, which is not part of stdenv on FreeBSD. ++ optional (!stdenv.isLinux) gnumake; @@ -56,7 +57,7 @@ stdenv.mkDerivation rec { postInstall = glib.flattenInclude; - crossAttrs = { + crossAttrs = stdenv.lib.optionalAttrs (stdenv.cross.libc or null != "msvcrt") { # Somehow it calls the unwrapped gcc, "i686-pc-linux-gnu-gcc", instead # of gcc. I think it's due to the unwrapped gcc being in the PATH. I don't # know why it's on the PATH. -- cgit 1.4.1 From 7d4ebb526caa9904dc45e5905dd2e4d90f912979 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:40:20 +0100 Subject: libjpeg(-turbo): fix on mingw By porting a patch from msys2. --- pkgs/development/libraries/libjpeg-turbo/default.nix | 4 ++++ .../libraries/libjpeg-turbo/mingw-boolean.patch | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix index da4d3a9822f26..c326e630bd087 100644 --- a/pkgs/development/libraries/libjpeg-turbo/default.nix +++ b/pkgs/development/libraries/libjpeg-turbo/default.nix @@ -8,6 +8,10 @@ stdenv.mkDerivation rec { sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj"; }; + patches = + stdenv.lib.optional (stdenv.cross.libc or null == "msvcrt") + ./mingw-boolean.patch; + outputs = [ "dev" "out" "doc" "bin" ]; nativeBuildInputs = [ nasm ]; diff --git a/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch b/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch new file mode 100644 index 0000000000000..9b9483d639877 --- /dev/null +++ b/pkgs/development/libraries/libjpeg-turbo/mingw-boolean.patch @@ -0,0 +1,19 @@ +Ported to updated libjpeg-turbo from +https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-libjpeg-turbo/jpeg-typedefs.patch +--- a/jmorecfg.h 2012-02-10 06:47:55 +0300 ++++ b/jmorecfg.h 2012-05-03 10:29:13 +0400 +@@ -224,7 +224,13 @@ + * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. + */ + +-#ifndef HAVE_BOOLEAN ++#if defined(_WIN32) && !defined(HAVE_BOOLEAN) ++#ifndef __RPCNDR_H__ ++typedef unsigned char boolean; ++#endif ++#define HAVE_BOOLEAN ++#endif ++#if !defined(HAVE_BOOLEAN) && !defined(__RPCNDR_H__) + typedef int boolean; + #endif + #ifndef FALSE /* in case these macros already exist */ -- cgit 1.4.1 From 076a09ee37570363f5fef77292a61a117edfdc8d Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:07:15 +0100 Subject: poppler: disable some dependencies for minimal config lcms, openjpeg and curl don't seem to be so necessary. --- pkgs/development/libraries/poppler/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..ef27113806bae 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { # TODO: reduce propagation to necessary libs propagatedBuildInputs = with lib; - [ zlib freetype fontconfig libjpeg lcms curl openjpeg ] - ++ optional (!minimal) cairo + [ zlib freetype fontconfig libjpeg ] + ++ optionals (!minimal) [ cairo lcms curl openjpeg ] ++ optional qt4Support qt4 ++ optional qt5Support qtbase; @@ -35,8 +35,11 @@ stdenv.mkDerivation rec { "--enable-libcurl" "--enable-zlib" ] - ++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ] - ++ optional (!utils) "--disable-utils"; + ++ optionals minimal [ + "--disable-poppler-glib" "--disable-poppler-cpp" + "--disable-libopenjpeg" "--disable-libcurl" + ] + ++ optional (!utils) "--disable-utils" ; enableParallelBuilding = true; -- cgit 1.4.1 From 960244c0af1cfab1c16993815e0373e36425f79b Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Wed, 10 Feb 2016 12:08:23 +0100 Subject: poppler: improve on mingw The minimal version should be fine now. --- pkgs/development/libraries/poppler/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ef27113806bae..d9d5a7679b17b 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -43,6 +43,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + crossAttrs.postPatch = + # there are tests using `strXXX_s` functions that are missing apparently + stdenv.lib.optionalString (stdenv.cross.libc or null == "msvcrt") + "sed '/^SUBDIRS =/s/ test / /' -i Makefile.in"; + meta = with lib; { homepage = http://poppler.freedesktop.org/; description = "A PDF rendering library"; -- cgit 1.4.1 From 7aae991fa2422459c5bab6498bc671d7dcc19033 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Thu, 11 Feb 2016 12:57:22 +0100 Subject: imagemagick: fix on mingw, only static ATM The output gets rather large (67 MB) as *each* executable gets ~5 MB of magick stuff statically. It seems we would have to fix or disable libxml2 first to get around this blowup. --- pkgs/applications/graphics/ImageMagick/default.nix | 45 ++++++++++++++++++---- 1 file changed, 37 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index ef3b7b05b1874..76752c94d45dd 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, pkgconfig, libtool +{ lib, stdenv, fetchurl, fetchpatch, pkgconfig, libtool , bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg , lcms2, openexr, libpng, librsvg, libtiff, libxml2 }: @@ -9,11 +9,28 @@ let else if stdenv.system == "x86_64-linux" || stdenv.system == "x86_64-darwin" then "x86-64" else if stdenv.system == "armv7l-linux" then "armv7l" else throw "ImageMagick is not supported on this platform."; + + cfg = { + version = "6.9.3-8"; + sha256 = "129s4cwp6cbhgsr3xr8186q5j02zpbk6kqfk4j7ayb563zsrdb4h"; + patches = []; + } + # Freeze version on mingw so we don't need to port the patch too often. + // lib.optionalAttrs (stdenv.cross.libc or null == "msvcrt") { + version = "6.9.2-0"; + sha256 = "17ir8bw1j7g7srqmsz3rx780sgnc21zfn0kwyj78iazrywldx8h7"; + patches = (fetchpatch { + name = "mingw-build.patch"; + url = "https://raw.githubusercontent.com/Alexpux/MINGW-packages/" + + "01ca03b2a4ef/mingw-w64-imagemagick/002-build-fixes.patch"; + sha256 = "1pypszlcx2sf7wfi4p37w1y58ck2r8cd5b2wrrwr9rh87p7fy1c0"; + }); + }; in stdenv.mkDerivation rec { name = "imagemagick-${version}"; - version = "6.9.3-8"; + inherit (cfg) version; src = fetchurl { urls = [ @@ -21,8 +38,9 @@ stdenv.mkDerivation rec { # the original source above removes tarballs quickly "http://distfiles.macports.org/ImageMagick/ImageMagick-${version}.tar.xz" ]; - sha256 = "129s4cwp6cbhgsr3xr8186q5j02zpbk6kqfk4j7ayb563zsrdb4h"; + inherit (cfg) sha256; }; + inherit (cfg) patches; outputs = [ "out" "doc" ]; @@ -35,15 +53,26 @@ stdenv.mkDerivation rec { ++ lib.optionals (ghostscript != null) [ "--with-gs-font-dir=${ghostscript}/share/ghostscript/fonts" "--with-gslib" - ]; + ] + ++ lib.optionals (stdenv.cross.libc or null == "msvcrt") + [ "--enable-static" "--disable-shared" ] # due to libxml2 being without DLLs ATM + ; + + nativeBuildInputs = [ pkgconfig libtool ]; buildInputs = - [ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg - openexr libpng librsvg libtiff libxml2 - ]; + [ zlib fontconfig freetype ghostscript + libpng libtiff libxml2 + ] + ++ lib.optionals (stdenv.cross.libc or null != "msvcrt") + [ openexr librsvg ] + ; propagatedBuildInputs = - [ bzip2 freetype libjpeg libX11 libXext libXt lcms2 ]; + [ bzip2 freetype libjpeg lcms2 ] + ++ lib.optionals (stdenv.cross.libc or null != "msvcrt") + [ libX11 libXext libXt ] + ; postInstall = '' (cd "$out/include" && ln -s ImageMagick* ImageMagick) -- cgit 1.4.1 From ad033f7665c14133cd17225d97a8db79012ddcbe Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 11 Apr 2015 23:19:37 +0200 Subject: boost: Fix generation of crossB2Args. `concatMapStringsSep` actually needs a function to work on the list items, but it was probably a leftover from the refactor in af8654d. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 5b0c06bd6bb2a..65d188a86c548 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -77,7 +77,7 @@ let "toolset=gcc-cross" "--without-python" ]; - crossB2Args = concatMapStringsSep " " (genericB2Flags ++ crossB2Flags); + crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); builder = b2Args: '' ./b2 ${b2Args} -- cgit 1.4.1 From 2d760a28b3479bcbb39d512cf9930b46d17d5364 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 10:32:18 +0200 Subject: boost: Supply some configure flags for mingw. Otherwise, Boost.Build is trying to compile against pthread and desperately searches for icu/iconv. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 65d188a86c548..758d95309bb1e 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -76,6 +76,9 @@ let "--user-config=user-config.jam" "toolset=gcc-cross" "--without-python" + ] ++ optionals stdenv.isCrossWin [ + "target-os=windows" + "threadapi=win32" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); -- cgit 1.4.1 From 5f0f48c08b3c718d898b2f00b7b48a5bf6d3eb95 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 10:34:06 +0200 Subject: boost: Reduce noise during cross compile. I guess the "set -x" was only left there for debugging, so I'm removing it because it let's the scrollback buffer explode ;-) Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 758d95309bb1e..51d3c911d6776 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -173,7 +173,6 @@ stdenv.mkDerivation { # usual --build and --host added on cross building. preConfigure = '' export configureFlags="--without-icu ${concatStringsSep " " commonConfigureFlags}" - set -x cat << EOF > user-config.jam using gcc : cross : $crossConfig-g++ ; EOF -- cgit 1.4.1 From fb74d901d76d393be28b19651f5368b89db93d16 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 12 Apr 2015 12:01:07 +0200 Subject: boost: Add patch for mingw to use gas instead. The upstream sources only compile with masm, so we need to add a patch that translates the masm sources to GNU assembler. Unfortunately, this means, that "generic.nix" is no longer very much generic, but the versions we currently include work fine with the patch. Unfortunately, the boost build still doesn't finish, but we're getting there soon enough. The patch is from https://svn.boost.org/trac/boost/ticket/7262 and following the discussion it seems that the upstream authors are unwilling to add a gas version for the Windows platform. So in the long term we might need to find a better solution to that, like for example using Wine to run MASM. Signed-off-by: aszlig --- pkgs/development/libraries/boost/generic.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 51d3c911d6776..561f65afa5136 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -1,4 +1,4 @@ -{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames +{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames , toolset ? if stdenv.cc.isClang then "clang" else null , enableRelease ? true , enableDebug ? false @@ -79,6 +79,9 @@ let ] ++ optionals stdenv.isCrossWin [ "target-os=windows" "threadapi=win32" + "binary-format=pe" + "address-model=${if stdenv.isCross64 then "64" else "32"}" + "architecture=x86" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); @@ -180,5 +183,13 @@ stdenv.mkDerivation { buildPhase = builder crossB2Args; installPhase = installer crossB2Args; postFixup = fixup; + } // optionalAttrs stdenv.isCrossWin { + patches = fetchurl { + url = "https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/" + + "boost-mingw.patch"; + sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj"; + }; + + patchFlags = "-p0"; }; } -- cgit 1.4.1 From 2b0d72585432832b96ed5cf117cf9035874dfce2 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 16 Feb 2016 20:36:51 +0100 Subject: boost: finish fixes for mingw - Dynamic linking won't work, it seems. - When using a native python, the extension isn't built, so let's not depend on it. - Replace flags missing on this branch, such as `isCrossWin`. --- pkgs/development/libraries/boost/generic.nix | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 561f65afa5136..8835c58618a21 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -4,8 +4,8 @@ , enableDebug ? false , enableSingleThreaded ? false , enableMultiThreaded ? true -, enableShared ? true -, enableStatic ? false +, enableShared ? !(stdenv.cross.libc or null == "msvcrt") # problems for now +, enableStatic ? !enableShared , enablePIC ? false , enableExceptions ? false , taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic)) @@ -76,11 +76,11 @@ let "--user-config=user-config.jam" "toolset=gcc-cross" "--without-python" - ] ++ optionals stdenv.isCrossWin [ + ] ++ optionals (stdenv.cross.libc == "msvcrt") [ "target-os=windows" "threadapi=win32" "binary-format=pe" - "address-model=${if stdenv.isCross64 then "64" else "32"}" + "address-model=${if hasPrefix "x86_64-" stdenv.cross.config then "64" else "32"}" "architecture=x86" ]; crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags); @@ -114,6 +114,8 @@ let find include \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \ -exec sed '1i#line 1 "{}"' -i '{}' \; ) + '' + optionalString (stdenv.cross.libc or null == "msvcrt") '' + ${stdenv.cross.config}-ranlib "$lib"/lib/*.a ''; in @@ -149,14 +151,15 @@ stdenv.mkDerivation { enableParallelBuilding = true; - buildInputs = [ icu expat zlib bzip2 python ] + buildInputs = [ expat zlib bzip2 ] + ++ stdenv.lib.optionals (! stdenv ? cross) [ python icu ] ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; configureScript = "./bootstrap.sh"; - configureFlags = commonConfigureFlags ++ [ - "--with-icu=${icu.dev}" - "--with-python=${python.interpreter}" - ] ++ optional (toolset != null) "--with-toolset=${toolset}"; + configureFlags = commonConfigureFlags + ++ [ "--with-python=${python.interpreter}" ] + ++ optional (! stdenv ? cross) "--with-icu=${icu.dev}" + ++ optional (toolset != null) "--with-toolset=${toolset}"; buildPhase = builder nativeB2Args; @@ -168,10 +171,6 @@ stdenv.mkDerivation { setOutputFlags = false; crossAttrs = rec { - buildInputs = [ expat.crossDrv zlib.crossDrv bzip2.crossDrv ]; - # all buildInputs set previously fell into propagatedBuildInputs, as usual, so we have to - # override them. - propagatedBuildInputs = buildInputs; # We want to substitute the contents of configureFlags, removing thus the # usual --build and --host added on cross building. preConfigure = '' @@ -183,7 +182,7 @@ stdenv.mkDerivation { buildPhase = builder crossB2Args; installPhase = installer crossB2Args; postFixup = fixup; - } // optionalAttrs stdenv.isCrossWin { + } // optionalAttrs (stdenv.cross.libc == "msvcrt") { patches = fetchurl { url = "https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/" + "boost-mingw.patch"; -- cgit 1.4.1 From 1bfc3a8965d54b88d132bf7368dac33919ba57e1 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 16 Feb 2016 20:44:54 +0100 Subject: boost: support libiconv, also on non-glibc platforms --- pkgs/development/libraries/boost/generic.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 8835c58618a21..8e5579cb8ea71 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames +{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv , toolset ? if stdenv.cc.isClang then "clang" else null , enableRelease ? true , enableDebug ? false @@ -151,7 +151,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; - buildInputs = [ expat zlib bzip2 ] + buildInputs = [ expat zlib bzip2 libiconv ] ++ stdenv.lib.optionals (! stdenv ? cross) [ python icu ] ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; -- cgit 1.4.1 From 2e06e5eb3669408f5b0fa6c64ac50ca54f8a6ee9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 23 Apr 2016 07:31:02 -0500 Subject: Revert "dbus: 1.8.20 -> 1.10.8" This reverts commit d088e0621e11a03cd50b27863f883fb0f8d3db36. The D-Bus update breaks logind and polkit. --- pkgs/development/libraries/dbus/default.nix | 7 ++++--- .../dbus/ignore-missing-includedirs.patch | 23 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/libraries/dbus/ignore-missing-includedirs.patch diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index dd86ca540815a..83635d9739f18 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -6,8 +6,8 @@ assert x11Support -> libX11 != null && libSM != null; let - version = "1.10.8"; - sha256 = "0560y3hxpgh346w6avcrcz79c8ansmn771y5xpcvvlr6m8mx5wxs"; + version = "1.8.20"; + sha256 = "0fkh3d5r57a659hw9lqnw4v0bc5556vx54fsf7l9c732ci6byksw"; self = stdenv.mkDerivation { name = "dbus-${version}"; @@ -17,7 +17,8 @@ self = stdenv.mkDerivation { inherit sha256; }; - patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; + patches = [ ./ignore-missing-includedirs.patch ] + ++ lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; postPatch = '' substituteInPlace tools/Makefile.in \ --replace 'install-localstatelibDATA:' 'disabled:' \ diff --git a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch new file mode 100644 index 0000000000000..2781f4ae3de51 --- /dev/null +++ b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch @@ -0,0 +1,23 @@ +diff -ru -x '*~' dbus-1.2.24-orig/bus/config-parser.c dbus-1.2.24/bus/config-parser.c +--- dbus-1.2.24-orig/bus/config-parser.c 2010-03-23 20:01:27.000000000 +0100 ++++ dbus-1.2.24/bus/config-parser.c 2010-07-20 14:17:20.000000000 +0200 +@@ -2159,12 +2159,16 @@ + + retval = FALSE; + +- dir = _dbus_directory_open (dirname, error); ++ dbus_error_init (&tmp_error); ++ ++ dir = _dbus_directory_open (dirname, &tmp_error); + + if (dir == NULL) +- goto failed; ++ { ++ retval = TRUE; ++ goto failed; ++ } + +- dbus_error_init (&tmp_error); + while (_dbus_directory_get_next_file (dir, &filename, &tmp_error)) + { + DBusString full_path; -- cgit 1.4.1 From cbaca6aa7175d10b3c9820232965a797ca4bb45d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 23 Apr 2016 09:54:51 -0500 Subject: phonon: fix src urls --- pkgs/development/libraries/phonon/backends/gstreamer.nix | 2 +- pkgs/development/libraries/phonon/backends/vlc.nix | 2 +- pkgs/development/libraries/phonon/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/phonon/backends/gstreamer.nix b/pkgs/development/libraries/phonon/backends/gstreamer.nix index 756db94e34377..3f2ab6696d18b 100644 --- a/pkgs/development/libraries/phonon/backends/gstreamer.nix +++ b/pkgs/development/libraries/phonon/backends/gstreamer.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; sha256 = "1wc5p1rqglf0n1avp55s50k7fjdzdrhg0gind15k8796w7nfbhyf"; }; diff --git a/pkgs/development/libraries/phonon/backends/vlc.nix b/pkgs/development/libraries/phonon/backends/vlc.nix index 1f14ec575a0e2..aaff26eee2867 100644 --- a/pkgs/development/libraries/phonon/backends/vlc.nix +++ b/pkgs/development/libraries/phonon/backends/vlc.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${pname}/${v}/src/${pname}-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${pname}/${v}/${pname}-${v}.tar.xz"; sha256 = "1gnd1j305mqajw5gxm42vg6ajkvi8611bxgc3qhj5k0saz5dgkn0"; }; diff --git a/pkgs/development/libraries/phonon/default.nix b/pkgs/development/libraries/phonon/default.nix index 7f3a2d773cf59..2356a0403804f 100644 --- a/pkgs/development/libraries/phonon/default.nix +++ b/pkgs/development/libraries/phonon/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://kde/stable/phonon/${v}/src/phonon-${v}.tar.xz"; + url = "mirror://kde/stable/phonon/${v}/phonon-${v}.tar.xz"; sha256 = "1q5hvsk4sfcb91625wcmldy7kgjmfpmpmkgzi6mxkqdd307v8x5v"; }; -- cgit 1.4.1 From 77fa336849704071d068ecc199e6fbbbb85d9546 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 23 Apr 2016 17:19:19 +0200 Subject: setup.hs: substitute uses only valid bash names bash variable names may only contain alphanumeric ASCII-symbols and _, and must not start with a number. Nix expression attribute names however might contain nearly every character (in particular spaces and dashes). Previously, a substitution that was not a valid bash name would be expanded to an empty string. This commit introduce a check that throws a (hopefully) helpful error when a wrong name is used in a substitution. --- pkgs/stdenv/generic/setup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index 9399ff7a76437..f7f9cd533c1f1 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -408,6 +408,11 @@ substitute() { if [ "$p" = --subst-var ]; then varName="${params[$((n + 1))]}" + # check if the used nix attribute name is a valid bash name + if ! [[ "$varName" =~ ^[a-zA-Z_]+[a-zA-Z0-9_]*$ ]]; then + echo "substitution variables must be valid bash names, \"$varName\" isn't." + exit 1; + fi pattern="@$varName@" replacement="${!varName}" n=$((n + 1)) @@ -439,6 +444,7 @@ substituteAll() { local output="$2" # Select all environment variables that start with a lowercase character. + # Will not work with nix attribute names (and thus env variables) containing '\n'. for envVar in $(env | sed -e $'s/^\([a-z][^=]*\)=.*/\\1/; t \n d'); do if [ "$NIX_DEBUG" = "1" ]; then echo "$envVar -> ${!envVar}" -- cgit 1.4.1 From a2d38bc7fc271ca5452ec3fd057bca3f737aa9ae Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Sat, 23 Apr 2016 17:55:20 +0200 Subject: doc/stdenv.xml document substitution env variables The filtering of environment variables that start with an uppercase letter is documented in the manual. --- doc/stdenv.xml | 10 +++++++++- pkgs/build-support/substitute/substitute-all.nix | 1 + pkgs/stdenv/generic/setup.sh | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/doc/stdenv.xml b/doc/stdenv.xml index 136e83ee0cda8..8129dda5a37e8 100644 --- a/doc/stdenv.xml +++ b/doc/stdenv.xml @@ -1169,7 +1169,15 @@ PATH=/nix/store/68afga4khv0w...-coreutils-6.12/bin echo @foo@ - That is, no substitution is performed for undefined variables. + That is, no substitution is performed for undefined variables. + + Environment variables that start with an uppercase letter are filtered out, + to prevent global variables (like HOME) from accidentally + getting substituted. + The variables also have to be valid bash “names”, as + defined in the bash manpage (alphanumeric or _, must not + start with a number). + diff --git a/pkgs/build-support/substitute/substitute-all.nix b/pkgs/build-support/substitute/substitute-all.nix index fb26894661d97..1022b25c4c9be 100644 --- a/pkgs/build-support/substitute/substitute-all.nix +++ b/pkgs/build-support/substitute/substitute-all.nix @@ -2,6 +2,7 @@ args: +# see the substituteAll in the nixpkgs documentation for usage and constaints stdenv.mkDerivation ({ name = if args ? name then args.name else baseNameOf (toString args.src); builder = ./substitute-all.sh; diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index f7f9cd533c1f1..a183aabed0e3c 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -445,7 +445,7 @@ substituteAll() { # Select all environment variables that start with a lowercase character. # Will not work with nix attribute names (and thus env variables) containing '\n'. - for envVar in $(env | sed -e $'s/^\([a-z][^=]*\)=.*/\\1/; t \n d'); do + for envVar in $(set | sed -e $'s/^\([a-z][^=]*\)=.*/\\1/; t \n d'); do if [ "$NIX_DEBUG" = "1" ]; then echo "$envVar -> ${!envVar}" fi -- cgit 1.4.1 From 1feed61164b5a115133b8d9ccb3492ccc8afd65e Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 23 Apr 2016 14:20:34 +0300 Subject: NixOS installer tests: Add a test using Gummiboot Issue #14956 --- nixos/tests/installer.nix | 77 +++++++++++++++++++++++++++++++++++------------ 1 file changed, 57 insertions(+), 20 deletions(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 48d5fecad9213..c9aa9f9c85df6 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -7,7 +7,7 @@ with pkgs.lib; let # The configuration to install. - makeConfig = { grubVersion, grubDevice, grubIdentifier + makeConfig = { bootLoader, grubVersion, grubDevice, grubIdentifier , extraConfig, forceGrubReinstallCount ? 0 }: pkgs.writeText "configuration.nix" '' @@ -18,15 +18,21 @@ let ]; - boot.loader.grub.version = ${toString grubVersion}; - ${optionalString (grubVersion == 1) '' - boot.loader.grub.splashImage = null; + ${optionalString (bootLoader == "grub") '' + boot.loader.grub.version = ${toString grubVersion}; + ${optionalString (grubVersion == 1) '' + boot.loader.grub.splashImage = null; + ''} + boot.loader.grub.device = "${grubDevice}"; + boot.loader.grub.extraConfig = "serial; terminal_output.serial"; + boot.loader.grub.fsIdentifier = "${grubIdentifier}"; + + boot.loader.grub.configurationLimit = 100 + ${toString forceGrubReinstallCount}; ''} - boot.loader.grub.device = "${grubDevice}"; - boot.loader.grub.extraConfig = "serial; terminal_output.serial"; - boot.loader.grub.fsIdentifier = "${grubIdentifier}"; - boot.loader.grub.configurationLimit = 100 + ${toString forceGrubReinstallCount}; + ${optionalString (bootLoader == "gummiboot") '' + boot.loader.gummiboot.enable = true; + ''} hardware.enableAllFirmware = lib.mkForce false; @@ -42,7 +48,7 @@ let # disk, and then reboot from the hard disk. It's parameterized with # a test script fragment `createPartitions', which must create # partitions and filesystems. - testScriptFun = { createPartitions, grubVersion, grubDevice + testScriptFun = { bootLoader, createPartitions, grubVersion, grubDevice , grubIdentifier, preBootCommands, extraConfig }: let @@ -50,7 +56,8 @@ let qemuFlags = (if system == "x86_64-linux" then "-m 768 " else "-m 512 ") + (optionalString (system == "x86_64-linux") "-cpu kvm64 "); - hdFlags = ''hda => "vm-state-machine/machine.qcow2", hdaInterface => "${iface}", ''; + hdFlags = ''hda => "vm-state-machine/machine.qcow2", hdaInterface => "${iface}", '' + + optionalString (bootLoader == "gummiboot") ''bios => "${pkgs.OVMF}/FV/OVMF.fd", ''; in '' $machine->start; @@ -73,7 +80,7 @@ let $machine->succeed("cat /mnt/etc/nixos/hardware-configuration.nix >&2"); $machine->copyFileFromHost( - "${ makeConfig { inherit grubVersion grubDevice grubIdentifier extraConfig; } }", + "${ makeConfig { inherit bootLoader grubVersion grubDevice grubIdentifier extraConfig; } }", "/mnt/etc/nixos/configuration.nix"); # Perform the installation. @@ -97,7 +104,11 @@ let # Did /boot get mounted? $machine->waitForUnit("local-fs.target"); - $machine->succeed("test -e /boot/grub"); + ${if bootLoader == "grub" then + ''$machine->succeed("test -e /boot/grub");'' + else + ''$machine->succeed("test -e /boot/loader/loader.conf");'' + } # Check whether /root has correct permissions. $machine->succeed("stat -c '%a' /root") =~ /700/ or die; @@ -114,7 +125,7 @@ let # We need to a writable nix-store on next boot. $machine->copyFileFromHost( - "${ makeConfig { inherit grubVersion grubDevice grubIdentifier extraConfig; forceGrubReinstallCount = 1; } }", + "${ makeConfig { inherit bootLoader grubVersion grubDevice grubIdentifier extraConfig; forceGrubReinstallCount = 1; } }", "/etc/nixos/configuration.nix"); # Check whether nixos-rebuild works. @@ -132,7 +143,7 @@ let ${preBootCommands} $machine->waitForUnit("multi-user.target"); $machine->copyFileFromHost( - "${ makeConfig { inherit grubVersion grubDevice grubIdentifier extraConfig; forceGrubReinstallCount = 2; } }", + "${ makeConfig { inherit bootLoader grubVersion grubDevice grubIdentifier extraConfig; forceGrubReinstallCount = 2; } }", "/etc/nixos/configuration.nix"); $machine->succeed("nixos-rebuild boot >&2"); $machine->shutdown; @@ -148,8 +159,9 @@ let makeInstallerTest = name: { createPartitions, preBootCommands ? "", extraConfig ? "" - , grubVersion ? 2, grubDevice ? "/dev/vda" - , grubIdentifier ? "uuid", enableOCR ? false, meta ? {} + , bootLoader ? "grub" # either "grub" or "gummiboot" + , grubVersion ? 2, grubDevice ? "/dev/vda", grubIdentifier ? "uuid" + , enableOCR ? false, meta ? {} }: makeTest { inherit enableOCR; @@ -183,6 +195,8 @@ let virtualisation.qemu.diskInterface = if grubVersion == 1 then "scsi" else "virtio"; + boot.loader.gummiboot.enable = mkIf (bootLoader == "gummiboot") true; + hardware.enableAllFirmware = mkForce false; # The test cannot access the network, so any packages we @@ -198,8 +212,8 @@ let pkgs.perlPackages.XMLLibXML pkgs.perlPackages.ListCompare ] - ++ optional (grubVersion == 1) pkgs.grub - ++ optionals (grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ]; + ++ optional (bootLoader == "grub" && grubVersion == 1) pkgs.grub + ++ optionals (bootLoader == "grub" && grubVersion == 2) [ pkgs.grub2 pkgs.grub2_efi ]; nix.binaryCaches = mkForce [ ]; }; @@ -207,8 +221,8 @@ let }; testScript = testScriptFun { - inherit createPartitions preBootCommands grubVersion - grubDevice grubIdentifier extraConfig; + inherit bootLoader createPartitions preBootCommands + grubVersion grubDevice grubIdentifier extraConfig; }; }; @@ -236,6 +250,29 @@ in { ''; }; + # Simple GPT/UEFI configuration using Gummiboot with 3 partitions: ESP, swap & root filesystem + simpleUefiGummiboot = makeInstallerTest "simpleUefiGummiboot" + { createPartitions = + '' + $machine->succeed( + "parted /dev/vda mklabel gpt", + "parted -s /dev/vda -- mkpart ESP fat32 1M 50MiB", # /boot + "parted -s /dev/vda -- set 1 boot on", + "parted -s /dev/vda -- mkpart primary linux-swap 50MiB 1024MiB", + "parted -s /dev/vda -- mkpart primary ext2 1024MiB -1MiB", # / + "udevadm settle", + "mkswap /dev/vda2 -L swap", + "swapon -L swap", + "mkfs.ext3 -L nixos /dev/vda3", + "mount LABEL=nixos /mnt", + "mkfs.vfat -n BOOT /dev/vda1", + "mkdir -p /mnt/boot", + "mount LABEL=BOOT /mnt/boot", + ); + ''; + bootLoader = "gummiboot"; + }; + # Same as the previous, but now with a separate /boot partition. separateBoot = makeInstallerTest "separateBoot" { createPartitions = -- cgit 1.4.1 From 7d7a9df3605c86e17bced51afe67eecd43f99754 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 16 Feb 2016 19:48:19 +0100 Subject: html-tidy: fix on mingw This doesn't fix the cross-build by itself due to https://github.com/NixOS/nixpkgs/issues/14965 But in this case one can hack around that "easily" by: (html-tidy.override { inherit (/*non-cross nixpkgs eval*/) cmake; }).crossDrv --- pkgs/tools/text/html-tidy/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/text/html-tidy/default.nix b/pkgs/tools/text/html-tidy/default.nix index 062715b830205..c0db454ed29b9 100644 --- a/pkgs/tools/text/html-tidy/default.nix +++ b/pkgs/tools/text/html-tidy/default.nix @@ -13,6 +13,9 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake libxslt/*manpage*/ ]; + cmakeFlags = stdenv.lib.optional + (stdenv.cross.libc or null == "msvcrt") "-DCMAKE_SYSTEM_NAME=Windows"; + # ATM bin/tidy is statically linked, as upstream provides no other option yet. # https://github.com/htacg/tidy-html5/issues/326#issuecomment-160322107 -- cgit 1.4.1 From 5f3987f44f81d2ca7bae266cdb1b26bd6d50b6c8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 17:47:28 +0300 Subject: Revert "tryAttrs: init function" This reverts commit 338340f993563551d8cb45941da987408abef65f. --- lib/attrsets.nix | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 70986195ae054..4161fa546c8fa 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -438,24 +438,6 @@ rec { overrideExisting = old: new: old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old)); - /* Try given attributes in order. If no attributes are found, return - attribute list itself. - - Example: - tryAttrs ["a" "b"] { a = 1; b = 2; } - => 1 - tryAttrs ["a" "b"] { c = 3; } - => { c = 3; } - */ - tryAttrs = allAttrs: set: - let tryAttrs_ = attrs: - if attrs == [] then set - else - (let h = head attrs; in - if hasAttr h set then getAttr h set - else tryAttrs_ (tail attrs)); - in tryAttrs_ allAttrs; - /*** deprecated stuff ***/ -- cgit 1.4.1 From 7d3e75827bc20d50a3b9172ed8891e5bffb30c93 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 18:13:50 +0300 Subject: getOutput function: init --- lib/attrsets.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 4161fa546c8fa..9104ff35d194f 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -438,6 +438,18 @@ rec { overrideExisting = old: new: old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old)); + /* Get a package output. + If no output is found, fallback to `.out` and then to the default. + + Example: + getOutput "dev" pkgs.openssl + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev" + */ + getOutput = output: pkg: + if pkg.outputUnspecified or false + then pkg.${output} or pkg.out or pkg + else pkg; + /*** deprecated stuff ***/ -- cgit 1.4.1 From ab0a0c004e1076315c8ed910437e6cf9c2f087ff Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 18:14:28 +0300 Subject: makeSearchPathOutputs: refactor to makeSearchPathOutput --- lib/strings.nix | 9 ++++----- nixos/modules/services/web-servers/apache-httpd/trac.nix | 2 +- nixos/modules/services/x11/desktop-managers/enlightenment.nix | 2 +- nixos/modules/system/boot/loader/grub/grub.nix | 2 +- nixos/modules/system/boot/systemd-unit-options.nix | 2 +- pkgs/applications/misc/guake/default.nix | 2 +- pkgs/applications/misc/roxterm/default.nix | 2 +- pkgs/applications/networking/browsers/chromium/plugins.nix | 2 +- pkgs/applications/networking/browsers/firefox-bin/default.nix | 2 +- pkgs/applications/networking/browsers/google-chrome/default.nix | 2 +- pkgs/applications/networking/browsers/opera/default.nix | 2 +- pkgs/applications/networking/browsers/vivaldi/default.nix | 2 +- .../networking/mailreaders/thunderbird-bin/default.nix | 2 +- pkgs/applications/science/math/mathematica/9.nix | 2 +- pkgs/applications/science/math/mathematica/default.nix | 2 +- pkgs/applications/version-management/reposurgeon/default.nix | 2 +- pkgs/games/ue4demos/default.nix | 2 +- pkgs/os-specific/linux/pm-utils/default.nix | 2 +- 18 files changed, 21 insertions(+), 22 deletions(-) diff --git a/lib/strings.nix b/lib/strings.nix index bda96fb32da02..0e3137f42ee52 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -88,15 +88,14 @@ rec { makeSearchPath = subDir: packages: concatStringsSep ":" (map (path: path + "/" + subDir) packages); - /* Construct a Unix-style search path, given trying outputs in order. + /* Construct a Unix-style search path, using given package output. If no output is found, fallback to `.out` and then to the default. Example: - makeSearchPathOutputs "bin" ["bin"] [ pkgs.openssl pkgs.zlib ] - => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-bin/bin:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/bin" + makeSearchPathOutput "dev" "bin" [ pkgs.openssl pkgs.zlib ] + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r-dev/bin:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/bin" */ - makeSearchPathOutputs = subDir: outputs: pkgs: - makeSearchPath subDir (map (pkg: if pkg.outputUnspecified or false then lib.tryAttrs (outputs ++ ["out"]) pkg else pkg) pkgs); + makeSearchPathOutput = output: subDir: pkgs: makeSearchPath subDir (map (lib.getOutput output) pkgs); /* Construct a library search path (such as RPATH) containing the libraries for a set of packages diff --git a/nixos/modules/services/web-servers/apache-httpd/trac.nix b/nixos/modules/services/web-servers/apache-httpd/trac.nix index c4aa6b6ad3a38..3196edc2838b5 100644 --- a/nixos/modules/services/web-servers/apache-httpd/trac.nix +++ b/nixos/modules/services/web-servers/apache-httpd/trac.nix @@ -96,7 +96,7 @@ in globalEnvVars = singleton { name = "PYTHONPATH"; value = - makeSearchPathOutputs "lib/${pkgs.python.libPrefix}/site-packages" ["lib"] + makeSearchPathOutput "lib" "lib/${pkgs.python.libPrefix}/site-packages" [ pkgs.mod_python pkgs.pythonPackages.trac pkgs.setuptools diff --git a/nixos/modules/services/x11/desktop-managers/enlightenment.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix index 11df7297833b6..2e788d8696079 100644 --- a/nixos/modules/services/x11/desktop-managers/enlightenment.nix +++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix @@ -7,7 +7,7 @@ let e = pkgs.enlightenment; xcfg = config.services.xserver; cfg = xcfg.desktopManager.enlightenment; - GST_PLUGIN_PATH = lib.makeSearchPathOutputs "lib/gstreamer-1.0" ["lib"] [ + GST_PLUGIN_PATH = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" [ pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good pkgs.gst_all_1.gst-plugins-bad diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 289405f931952..7fc467b60f7b4 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -58,7 +58,7 @@ let path = (makeBinPath ([ pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils pkgs.btrfs-progs pkgs.utillinux ] ++ (if cfg.efiSupport && (cfg.version == 2) then [pkgs.efibootmgr ] else []) - )) + ":" + (makeSearchPathOutputs "sbin" ["bin"] [ + )) + ":" + (makeSearchPathOutput "bin" "sbin" [ pkgs.mdadm pkgs.utillinux ]); }); diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix index c8c9cda913c05..f2a22e4ada8a0 100644 --- a/nixos/modules/system/boot/systemd-unit-options.nix +++ b/nixos/modules/system/boot/systemd-unit-options.nix @@ -193,7 +193,7 @@ in rec { path = mkOption { default = []; - apply = ps: "${makeBinPath ps}:${makeSearchPathOutputs "sbin" ["bin"] ps}"; + apply = ps: "${makeBinPath ps}:${makeSearchPathOutput "bin" "sbin" ps}"; description = '' Packages added to the service's PATH environment variable. Both the bin diff --git a/pkgs/applications/misc/guake/default.nix b/pkgs/applications/misc/guake/default.nix index 81ac845c5cf88..6290f08273406 100644 --- a/pkgs/applications/misc/guake/default.nix +++ b/pkgs/applications/misc/guake/default.nix @@ -16,7 +16,7 @@ gconftool-2 --recursive-unset /apps/guake with lib; let inputs = [ dbus gtk2 gconf python2 libutempter vte keybinder gnome3.gnome_common ]; - pyPath = makeSearchPathOutputs python2.sitePackages ["lib"] (attrVals [ "dbus" "notify" "pyGtkGlade" "pyxdg" ] python2Packages ++ [ gnome2.gnome_python ]); + pyPath = makeSearchPathOutput "lib" python2.sitePackages (attrVals [ "dbus" "notify" "pyGtkGlade" "pyxdg" ] python2Packages ++ [ gnome2.gnome_python ]); in stdenv.mkDerivation rec { name = "guake-${version}"; version = "0.8.3"; diff --git a/pkgs/applications/misc/roxterm/default.nix b/pkgs/applications/misc/roxterm/default.nix index ec055f3055fc4..d8f44ba5cdbfe 100644 --- a/pkgs/applications/misc/roxterm/default.nix +++ b/pkgs/applications/misc/roxterm/default.nix @@ -29,7 +29,7 @@ in stdenv.mkDerivation rec { "-I${dbus_libs.lib}/lib/dbus-1.0/include" ]; # Fix up python path so the lockfile library is on it. - PYTHONPATH = stdenv.lib.makeSearchPathOutputs pythonFull.sitePackages ["lib"] [ + PYTHONPATH = stdenv.lib.makeSearchPathOutput "lib" pythonFull.sitePackages [ pythonPackages.curses pythonPackages.lockfile ]; diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index b7883454b3495..ac7f8111212ec 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -65,7 +65,7 @@ let patchPhase = let rpaths = [ stdenv.cc.cc ]; - mkrpath = p: "${makeSearchPathOutputs "lib64" ["lib"] p}:${makeLibraryPath p}"; + mkrpath = p: "${makeSearchPathOutput "lib" "lib64" p}:${makeLibraryPath p}"; in '' for sofile in PepperFlash/libpepflashplayer.so \ libwidevinecdm.so libwidevinecdmadapter.so; do diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index 152089286b485..d07aec33eb0cc 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation { libheimdal libpulseaudio systemd - ] + ":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] [ + ] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [ stdenv.cc.cc ]; diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index 77f0d1693da3a..3042f30e000a9 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -65,7 +65,7 @@ in stdenv.mkDerivation rec { tar xf data.tar.xz ''; - rpath = makeLibraryPath deps + ":" + makeSearchPathOutputs "lib64" ["lib"] deps; + rpath = makeLibraryPath deps + ":" + makeSearchPathOutput "lib" "lib64" deps; binpath = makeBinPath deps; installPhase = '' diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix index 325e855ec72e7..a00905cf93772 100644 --- a/pkgs/applications/networking/browsers/opera/default.nix +++ b/pkgs/applications/networking/browsers/opera/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { libPath = stdenv.lib.makeLibraryPath buildInputs + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") - (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); preFixup = '' diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index 7c3c167cf32d1..c8931811548f6 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { libPath = stdenv.lib.makeLibraryPath buildInputs + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") - (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); buildPhase = '' echo "Patching Vivaldi binaries" diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix index bbb51c7c18659..f974265aa6e63 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix @@ -105,7 +105,7 @@ stdenv.mkDerivation { nspr nss pango - ] + ":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] [ + ] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [ stdenv.cc.cc ]; diff --git a/pkgs/applications/science/math/mathematica/9.nix b/pkgs/applications/science/math/mathematica/9.nix index 2a43cf5677fea..07a20b4ebe03a 100644 --- a/pkgs/applications/science/math/mathematica/9.nix +++ b/pkgs/applications/science/math/mathematica/9.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { ldpath = stdenv.lib.makeLibraryPath buildInputs + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") - (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); phases = "unpackPhase installPhase fixupPhase"; diff --git a/pkgs/applications/science/math/mathematica/default.nix b/pkgs/applications/science/math/mathematica/default.nix index c2988331c4cde..4de4a0c261d55 100644 --- a/pkgs/applications/science/math/mathematica/default.nix +++ b/pkgs/applications/science/math/mathematica/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { ldpath = stdenv.lib.makeLibraryPath buildInputs + stdenv.lib.optionalString (stdenv.system == "x86_64-linux") - (":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] buildInputs); + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); phases = "unpackPhase installPhase fixupPhase"; diff --git a/pkgs/applications/version-management/reposurgeon/default.nix b/pkgs/applications/version-management/reposurgeon/default.nix index 669151adbcc8d..55858034b1c4e 100644 --- a/pkgs/applications/version-management/reposurgeon/default.nix +++ b/pkgs/applications/version-management/reposurgeon/default.nix @@ -51,7 +51,7 @@ mkDerivation rec { [ out git bazaar cvs darcs fossil mercurial monotone rcs src subversion cvs_fast_export ] ); - pythonpath = makeSearchPathOutputs python27.sitePackages ["lib"] ( + pythonpath = makeSearchPathOutput "lib" python27.sitePackages ( filter (x: x != null) [ python27Packages.readline or null python27Packages.hglib or null ] ); diff --git a/pkgs/games/ue4demos/default.nix b/pkgs/games/ue4demos/default.nix index 963dde91068bc..4bac1cd1bb35f 100644 --- a/pkgs/games/ue4demos/default.nix +++ b/pkgs/games/ue4demos/default.nix @@ -12,7 +12,7 @@ let rtdeps = stdenv.lib.makeLibraryPath [ xorg.libXxf86vm xorg.libXext openal ] - + ":" + stdenv.lib.makeSearchPathOutputs "lib64" ["lib"] [ stdenv.cc.cc ]; + + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [ stdenv.cc.cc ]; buildCommand = '' diff --git a/pkgs/os-specific/linux/pm-utils/default.nix b/pkgs/os-specific/linux/pm-utils/default.nix index cb74dc204a3ca..e2257642d0b1b 100644 --- a/pkgs/os-specific/linux/pm-utils/default.nix +++ b/pkgs/os-specific/linux/pm-utils/default.nix @@ -6,7 +6,7 @@ let binPath = stdenv.lib.makeBinPath [ coreutils gnugrep utillinux kmod procps kbd dbus_tools ]; - sbinPath = stdenv.lib.makeSearchPathOutputs "sbin" ["bin"] + sbinPath = stdenv.lib.makeSearchPathOutput "bin" "sbin" [ procps ]; in -- cgit 1.4.1 From c779e30d531032a7744685e80c2143b358efe1b0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 18:15:11 +0300 Subject: make*Path: implement via makeSearchPathOutput --- lib/strings.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/strings.nix b/lib/strings.nix index 0e3137f42ee52..9e9bdd6e1535f 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -107,9 +107,7 @@ rec { makeLibraryPath [ pkgs.openssl pkgs.zlib ] => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r/lib:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/lib" */ - makeLibraryPath = pkgs: makeSearchPath "lib" - # try to guess the right output of each pkg - (map (pkg: if pkg.outputUnspecified or false then pkg.lib or (pkg.out or pkg) else pkg) pkgs); + makeLibraryPath = makeSearchPathOutput "lib" "lib"; /* Construct a binary search path (such as $PATH) containing the binaries for a set of packages. @@ -118,8 +116,7 @@ rec { makeBinPath ["/root" "/usr" "/usr/local"] => "/root/bin:/usr/bin:/usr/local/bin" */ - makeBinPath = pkgs: makeSearchPath "bin" - (map (pkg: if pkg.outputUnspecified or false then pkg.bin or (pkg.out or pkg) else pkg) pkgs); + makeBinPath = makeSearchPathOutput "bin" "bin"; /* Construct a perl search path (such as $PERL5LIB) @@ -131,8 +128,7 @@ rec { makePerlPath [ pkgs.perlPackages.NetSMTP ] => "/nix/store/n0m1fk9c960d8wlrs62sncnadygqqc6y-perl-Net-SMTP-1.25/lib/perl5/site_perl" */ - makePerlPath = pkgs: makeSearchPath "lib/perl5/site_perl" - (map (pkg: if pkg.outputUnspecified or false then pkg.lib or (pkg.out or pkg) else pkg) pkgs); + makePerlPath = makeSearchPathOutput "lib" "lib/perl5/site_perl"; /* Dependening on the boolean `cond', return either the given string or the empty string. Useful to contatenate against a bigger string. -- cgit 1.4.1 From 5ff40ddedfe3188749faa21d71ac013277aff1d1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 19:00:39 +0300 Subject: add get* helper functions and mass-replace manual outputs search with them --- lib/attrsets.nix | 4 ++ .../system/activation/activation-script.nix | 3 +- pkgs/applications/search/recoll/default.nix | 44 +++++++++++----------- pkgs/build-support/cc-wrapper/default.nix | 12 +++--- pkgs/build-support/gcc-wrapper-old/default.nix | 8 ++-- .../compilers/gcc-arm-embedded/default.nix | 4 +- pkgs/development/compilers/ghc/6.10.2-binary.nix | 4 +- pkgs/development/compilers/go/1.4.nix | 2 +- pkgs/development/interpreters/perl/default.nix | 4 +- pkgs/development/interpreters/pypy/default.nix | 7 ++-- .../interpreters/python/2.6/default.nix | 4 +- .../interpreters/python/2.7/default.nix | 4 +- .../interpreters/python/3.2/default.nix | 4 +- .../interpreters/python/3.3/default.nix | 4 +- .../interpreters/python/3.4/default.nix | 4 +- .../interpreters/python/3.5/default.nix | 4 +- .../tools/build-managers/cmake/default.nix | 6 +-- pkgs/misc/emulators/wine/base.nix | 5 ++- pkgs/stdenv/darwin/make-bootstrap-tools.nix | 2 +- pkgs/stdenv/generic/default.nix | 2 +- 20 files changed, 67 insertions(+), 64 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 9104ff35d194f..636cb257d6bf5 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -450,6 +450,10 @@ rec { then pkg.${output} or pkg.out or pkg else pkg; + getBin = getOutput "bin"; + getLib = getOutput "lib"; + getDev = getOutput "dev"; + /*** deprecated stuff ***/ diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix index 9d61d64f7553a..4489e34831da0 100644 --- a/nixos/modules/system/activation/activation-script.nix +++ b/nixos/modules/system/activation/activation-script.nix @@ -12,8 +12,7 @@ let ''; }); - path = map # outputs TODO? - (pkg: (pkg.bin or (pkg.out or pkg))) + path = map getBin [ pkgs.coreutils pkgs.gnugrep pkgs.findutils pkgs.glibc # needed for getent pkgs.shadow diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 253b97aff1e70..345b1341c0f40 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, bison +{ stdenv, fetchurl, lib, bison , qt4, xapian, file, python, perl , djvulibre, groff, libxslt, unzip, poppler_utils, antiword, catdoc, lyx , libwpd, unrtf, untex @@ -26,27 +26,27 @@ stdenv.mkDerivation rec { # the absolute path to the filtering command. postInstall = '' for f in $out/share/recoll/filters/* ; do - substituteInPlace $f --replace antiword ${antiword}/bin/antiword - substituteInPlace $f --replace awk ${gawk}/bin/awk - substituteInPlace $f --replace catppt ${catdoc}/bin/catppt - substituteInPlace $f --replace djvused ${djvulibre.bin}/bin/djvused - substituteInPlace $f --replace djvutxt ${djvulibre.bin}/bin/djvutxt - substituteInPlace $f --replace egrep ${gnugrep}/bin/egrep - substituteInPlace $f --replace groff ${groff}/bin/groff - substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip - substituteInPlace $f --replace iconv ${libiconv.bin or libiconv}/bin/iconv - substituteInPlace $f --replace lyx ${lyx}/bin/lyx - substituteInPlace $f --replace pdftotext ${poppler_utils.out}/bin/pdftotext - substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii - substituteInPlace $f --replace sed ${gnused}/bin/sed - substituteInPlace $f --replace tar ${gnutar}/bin/tar - substituteInPlace $f --replace unzip ${unzip}/bin/unzip - substituteInPlace $f --replace xls2csv ${catdoc}/bin/xls2csv - substituteInPlace $f --replace xsltproc ${libxslt.bin}/bin/xsltproc - substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf - substituteInPlace $f --replace untex ${untex}/bin/untex - substituteInPlace $f --replace wpd2html ${libwpd}/bin/wpd2html - substituteInPlace $f --replace /usr/bin/perl ${perl}/bin/perl + substituteInPlace $f --replace antiword ${lib.getBin antiword}/bin/antiword + substituteInPlace $f --replace awk ${lib.getBin gawk}/bin/awk + substituteInPlace $f --replace catppt ${lib.getBin catdoc}/bin/catppt + substituteInPlace $f --replace djvused ${lib.getBin djvulibre}/bin/djvused + substituteInPlace $f --replace djvutxt ${lib.getBin djvulibre}/bin/djvutxt + substituteInPlace $f --replace egrep ${lib.getBin gnugrep}/bin/egrep + substituteInPlace $f --replace groff ${lib.getBin groff}/bin/groff + substituteInPlace $f --replace gunzip ${lib.getBin gzip}/bin/gunzip + substituteInPlace $f --replace iconv ${lib.getBin libiconv}/bin/iconv + substituteInPlace $f --replace lyx ${lib.getBin lyx}/bin/lyx + substituteInPlace $f --replace pdftotext ${lib.getBin poppler_utils}/bin/pdftotext + substituteInPlace $f --replace pstotext ${lib.getBin ghostscript}/bin/ps2ascii + substituteInPlace $f --replace sed ${lib.getBin gnused}/bin/sed + substituteInPlace $f --replace tar ${lib.getBin gnutar}/bin/tar + substituteInPlace $f --replace unzip ${lib.getBin unzip}/bin/unzip + substituteInPlace $f --replace xls2csv ${lib.getBin catdoc}/bin/xls2csv + substituteInPlace $f --replace xsltproc ${lib.getBin libxslt}/bin/xsltproc + substituteInPlace $f --replace unrtf ${lib.getBin unrtf}/bin/unrtf + substituteInPlace $f --replace untex ${lib.getBin untex}/bin/untex + substituteInPlace $f --replace wpd2html ${lib.getBin libwpd}/bin/wpd2html + substituteInPlace $f --replace /usr/bin/perl ${lib.getBin perl}/bin/perl done ''; diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix index 6cdd047724455..6bdb35b912a79 100644 --- a/pkgs/build-support/cc-wrapper/default.nix +++ b/pkgs/build-support/cc-wrapper/default.nix @@ -27,13 +27,13 @@ let ccVersion = (builtins.parseDrvName cc.name).version; ccName = (builtins.parseDrvName cc.name).name; - libc_bin = if nativeLibc then null else libc.bin or libc; - libc_dev = if nativeLibc then null else libc.dev or libc; - libc_lib = if nativeLibc then null else libc.out or libc; - cc_solib = cc.lib or cc; - binutils_bin = if nativeTools then "" else binutils.bin or binutils; + libc_bin = if nativeLibc then null else getBin libc; + libc_dev = if nativeLibc then null else getDev libc; + libc_lib = if nativeLibc then null else getLib libc; + cc_solib = getLib cc; + binutils_bin = if nativeTools then "" else getBin binutils; # The wrapper scripts use 'cat' and 'grep', so we may need coreutils. - coreutils_bin = if nativeTools then "" else coreutils.bin or coreutils; + coreutils_bin = if nativeTools then "" else getBin coreutils; in stdenv.mkDerivation { diff --git a/pkgs/build-support/gcc-wrapper-old/default.nix b/pkgs/build-support/gcc-wrapper-old/default.nix index f44aaec5d9d77..a7801e239e9ca 100644 --- a/pkgs/build-support/gcc-wrapper-old/default.nix +++ b/pkgs/build-support/gcc-wrapper-old/default.nix @@ -5,7 +5,7 @@ # stdenv.mkDerivation provides a wrapper that sets up the right environment # variables so that the compiler and the linker just "work". -{ name ? "", stdenv, nativeTools, nativeLibc, nativePrefix ? "" +{ name ? "", stdenv, lib, nativeTools, nativeLibc, nativePrefix ? "" , gcc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? "" , zlib ? null }: @@ -41,10 +41,10 @@ stdenv.mkDerivation { addFlags = ./add-flags; inherit nativeTools nativeLibc nativePrefix gcc; - gcc_lib = gcc.lib or gcc; + gcc_lib = lib.getLib gcc; libc = if nativeLibc then null else libc; - libc_dev = if nativeLibc then null else libc.dev or libc; - libc_bin = if nativeLibc then null else libc.bin or libc; + libc_dev = if nativeLibc then null else lib.getDev libc; + libc_bin = if nativeLibc then null else lib.getBin libc; binutils = if nativeTools then null else binutils; # The wrapper scripts use 'cat', so we may need coreutils coreutils = if nativeTools then null else coreutils; diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix index 1c549907c31d3..85d8d37b21ce9 100644 --- a/pkgs/development/compilers/gcc-arm-embedded/default.nix +++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation { for f in $(find $out); do if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then - patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ - --set-rpath $out/lib:${gcc.lib or gcc}/lib:${ncurses.out}/lib \ + patchelf --set-interpreter ${getLib glibc}/lib/ld-linux.so.2 \ + --set-rpath $out/lib:${getLib gcc}/lib:${ncurses.out}/lib \ "$f" || true fi done diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 3ad872518f9e5..045b9142ef3bb 100644 --- a/pkgs/development/compilers/ghc/6.10.2-binary.nix +++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, perl, libedit, ncurses, gmp}: +{stdenv, lib, fetchurl, perl, libedit, ncurses, gmp}: stdenv.mkDerivation rec { version = "6.10.2"; @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { '' else ""); configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp.dev or gmp}/include + ./configure --prefix=$out --with-gmp-libraries=${lib.getLib gmp}/lib --with-gmp-includes=${lib.getDev gmp}/include ''; # Stripping combined with patchelf breaks the executables (they die diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 3a1f39eab2423..17c3cc0521778 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go # Find the loader dynamically - LOADER="$(find ${libc.out or libc}/lib -name ld-linux\* | head -n 1)" + LOADER="$(find ${lib.getLib libc}/lib -name ld-linux\* | head -n 1)" # Replace references to the loader find src/cmd -name asm.c -exec sed -i "s,/lib/ld-linux.*\.so\.[0-9],$LOADER," {} \; diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix index f8565b9637a5b..a853ca4eb777f 100644 --- a/pkgs/development/interpreters/perl/default.nix +++ b/pkgs/development/interpreters/perl/default.nix @@ -17,8 +17,8 @@ assert enableThreading -> (stdenv ? glibc); let libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr"; - libcInc = libc.dev or libc; - libcLib = libc.out or libc; + libcInc = lib.getDev libc; + libcLib = lib.getLib libc; common = { version, sha256 }: stdenv.mkDerivation rec { name = "perl-${version}"; diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index 095e0b7db08e3..fdbf7b1bab634 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -25,10 +25,9 @@ let ++ stdenv.lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc ++ stdenv.lib.optional zlibSupport zlib; - C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.dev or p}/include") buildInputs); - LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") buildInputs); - LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") - (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs)); + C_INCLUDE_PATH = stdenv.lib.makeSearchPathOutput "dev" "include" buildInputs; + LIBRARY_PATH = stdenv.lib.makeLibraryPath buildInputs; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs); preConfigure = '' # hint pypy to find nix ncurses diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 96b44ddc17f38..2196bb7e8b86b 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -53,8 +53,8 @@ let ++ optional zlibSupport zlib; mkPaths = paths: { - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; + LIBRARY_PATH = makeLibraryPath paths; }; # Build the basic Python interpreter without modules that have diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index f1ae897ea4ac1..6b336766db786 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -102,8 +102,8 @@ let propagatedBuildInputs = optional stdenv.isDarwin configd; mkPaths = paths: { - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths; + LIBRARY_PATH = makeLibraryPath paths; }; # Build the basic Python interpreter without modules that have diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix index c0b5d3401ddd3..91f962efcf4a8 100644 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ b/pkgs/development/interpreters/python/3.2/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index a46ef7c056b2d..b9cb46562122a 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 8d87c6abfbb4e..6a3ab25c5d409 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 4bc39f4c2b3a7..504c85ac38d2b 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" + CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" + LDFLAGS="${makeLibraryPath buildInputs}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/tools/build-managers/cmake/default.nix b/pkgs/development/tools/build-managers/cmake/default.nix index 9d0ff6e1f1746..e1528aa5f0099 100644 --- a/pkgs/development/tools/build-managers/cmake/default.nix +++ b/pkgs/development/tools/build-managers/cmake/default.nix @@ -47,9 +47,9 @@ stdenv.mkDerivation rec { '' fixCmakeFiles . substituteInPlace Modules/Platform/UnixPaths.cmake \ - --subst-var-by glibc_bin ${glibc.bin or glibc} \ - --subst-var-by glibc_dev ${glibc.dev or glibc} \ - --subst-var-by glibc_lib ${glibc.out or glibc} + --subst-var-by glibc_bin ${getBin glibc} \ + --subst-var-by glibc_dev ${getDev glibc} \ + --subst-var-by glibc_lib ${getLib glibc} ''; configureFlags = [ "--docdir=/share/doc/${name}" diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 804eb0bb304c5..0398ed57a7026 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -32,9 +32,10 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) { # them to the RPATH so that the user doesn't have to set them in # LD_LIBRARY_PATH. NIX_LDFLAGS = map (path: "-rpath " + path) ( - map (x: "${x}/lib") ([ stdenv.cc.cc ] ++ (map (x: x.lib or x.out) buildInputs)) + map (x: "${lib.getLib x}/lib") ([ stdenv.cc.cc ] ++ buildInputs) # libpulsecommon.so is linked but not found otherwise - ++ lib.optionals pulseaudioSupport (map (x: "${x}/lib/pulseaudio") (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) + ++ lib.optionals pulseaudioSupport (map (x: "${lib.getLib x}/lib/pulseaudio") + (toBuildInputs pkgArches (pkgs: [ pkgs.libpulseaudio ]))) ); # Don't shrink the ELF RPATHs in order to keep the extra RPATH diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix index 561dcc7fdfda1..40f26dc2450b1 100644 --- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix @@ -62,7 +62,7 @@ rec { cp -d ${openssl.out}/lib/*.dylib $out/lib cp -d ${gnugrep.pcre.out}/lib/libpcre*.dylib $out/lib - cp -d ${libiconv.lib or libiconv}/lib/lib*.dylib $out/lib + cp -d ${lib.getLib libiconv}/lib/lib*.dylib $out/lib cp -d ${gettext}/lib/libintl*.dylib $out/lib chmod +x $out/lib/libintl*.dylib cp -d ${ncurses.out}/lib/libncurses*.dylib $out/lib diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 547541d28246e..5d3b1682f3960 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -223,7 +223,7 @@ let # include it in the result, it *is* available to nix-env for queries. meta = { } # If the packager hasn't specified `outputsToInstall`, choose a default, - # namely `p.bin or p.out or p`; + # namely `lib.getBin p`; # if he has specified it, it will be overridden below in `// meta`. # Note: This default probably shouldn't be globally configurable. # Services and users should specify outputs explicitly, -- cgit 1.4.1 From d4794c36306616faa96b0dd5a6f0696d96973738 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 18 Apr 2016 17:06:15 +0300 Subject: stdenv: clarify how `outputsToInstall` is chosen See https://github.com/NixOS/nixpkgs/pull/14694/files#r60013871 --- pkgs/stdenv/generic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 5d3b1682f3960..a51289fa90190 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -223,7 +223,7 @@ let # include it in the result, it *is* available to nix-env for queries. meta = { } # If the packager hasn't specified `outputsToInstall`, choose a default, - # namely `lib.getBin p`; + # which is the name of `p.bin or p.out or p`; # if he has specified it, it will be overridden below in `// meta`. # Note: This default probably shouldn't be globally configurable. # Services and users should specify outputs explicitly, -- cgit 1.4.1 From 5ede7d4d925542da9315b659afbe16b90613414e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 20 Apr 2016 17:41:36 +0300 Subject: octoprint: use makeSearchPathOutput --- nixos/modules/services/misc/octoprint.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/octoprint.nix b/nixos/modules/services/misc/octoprint.nix index 8d46bca99f999..c2b3f63be7d43 100644 --- a/nixos/modules/services/misc/octoprint.nix +++ b/nixos/modules/services/misc/octoprint.nix @@ -102,7 +102,7 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; path = [ pluginsEnv ]; - environment.PYTHONPATH = makeSearchPathOutputs pkgs.python.sitePackages ["lib"] [ pluginsEnv ]; + environment.PYTHONPATH = makeSearchPathOutput "lib" pkgs.python.sitePackages [ pluginsEnv ]; preStart = '' mkdir -p "${cfg.stateDir}" -- cgit 1.4.1 From 96a5c34bc5736780f84a62e682c59da50e531f0e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 13:21:15 +0300 Subject: cmake2_8: use get(Output) functions --- pkgs/development/tools/build-managers/cmake/2.8.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/build-managers/cmake/2.8.nix b/pkgs/development/tools/build-managers/cmake/2.8.nix index 6542c9ae3c52a..885e10b465ae4 100644 --- a/pkgs/development/tools/build-managers/cmake/2.8.nix +++ b/pkgs/development/tools/build-managers/cmake/2.8.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = optional wantPS ps; - CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" + CMAKE_PREFIX_PATH = concatStringsSep ":" (concatMap (p: [ p p.out ]) buildInputs); configureFlags = @@ -63,9 +63,9 @@ stdenv.mkDerivation rec { source $setupHook fixCmakeFiles . substituteInPlace Modules/Platform/UnixPaths.cmake \ - --subst-var-by glibc_bin ${glibc.bin or glibc} \ - --subst-var-by glibc_dev ${glibc.dev or glibc} \ - --subst-var-by glibc_lib ${glibc.out or glibc} + --subst-var-by glibc_bin ${getBin glibc} \ + --subst-var-by glibc_dev ${getDev glibc} \ + --subst-var-by glibc_lib ${getLib glibc} ''; meta = { -- cgit 1.4.1 From daa8ba26c94fff99e963a8739311ccb2033eda1c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 13:23:56 +0300 Subject: atomEnv: use makeSearchPathOutput --- pkgs/applications/editors/atom/env.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/atom/env.nix b/pkgs/applications/editors/atom/env.nix index d91d8a4ecbe46..dbfc2ebb6b381 100644 --- a/pkgs/applications/editors/atom/env.nix +++ b/pkgs/applications/editors/atom/env.nix @@ -13,7 +13,7 @@ let ]; libPathNative = lib.makeLibraryPath packages; - libPath64 = lib.makeSearchPathOutputs "lib64" ["lib"] packages; + libPath64 = lib.makeSearchPathOutput "lib" "lib64" packages; libPath = "${libPathNative}:${libPath64}"; in { inherit packages libPath; } -- cgit 1.4.1 From 69a072484dd9ee04c68a3bf3ce5a1bdb111a9229 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 14:27:51 +0300 Subject: gcc-wrapper-old: fix binutils and coreutils' paths --- pkgs/build-support/gcc-wrapper-old/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/gcc-wrapper-old/default.nix b/pkgs/build-support/gcc-wrapper-old/default.nix index a7801e239e9ca..a87c726e0a8b2 100644 --- a/pkgs/build-support/gcc-wrapper-old/default.nix +++ b/pkgs/build-support/gcc-wrapper-old/default.nix @@ -45,9 +45,9 @@ stdenv.mkDerivation { libc = if nativeLibc then null else libc; libc_dev = if nativeLibc then null else lib.getDev libc; libc_bin = if nativeLibc then null else lib.getBin libc; - binutils = if nativeTools then null else binutils; + binutils = if nativeTools then null else lib.getBin binutils; # The wrapper scripts use 'cat', so we may need coreutils - coreutils = if nativeTools then null else coreutils; + coreutils = if nativeTools then null else lib.getBin coreutils; langC = if nativeTools then true else gcc.langC; langCC = if nativeTools then true else gcc.langCC; -- cgit 1.4.1 From c7377b0e4a5fb3cf44c334c2353adc96e0e82918 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Mon, 25 Apr 2016 17:12:49 +0200 Subject: zlib, bash: mass-rebuild cleanup --- pkgs/development/libraries/zlib/default.nix | 3 --- pkgs/shells/bash/default.nix | 4 +--- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 59713bb8d205e..92bde5deb9736 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -64,9 +64,6 @@ stdenv.mkDerivation rec { makeFlags = [ "RANLIB=${stdenv.cross.config}-ranlib" ]; }; - # CYGXXX: This is not needed anymore and non-functional, but left not to trigger rebuilds - cygwinConfigureEnableShared = if (!stdenv.isCygwin) then true else null; - passthru.version = version; meta = with stdenv.lib; { diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix index 2fa229692eb3c..49d149eb183c8 100644 --- a/pkgs/shells/bash/default.nix +++ b/pkgs/shells/bash/default.nix @@ -21,9 +21,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - outputs = if (!interactive) # conditional to avoid mass rebuild ATM - then [ "out" "doc" ] - else [ "out" "doc" "info" ]; + outputs = [ "out" "doc" "info" ]; # the man pages are small and useful enough outputMan = if interactive then "out" else null; -- cgit 1.4.1 From 26f90102b897bab14d05bbd8c2385f619d04d8fa Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Apr 2016 19:26:31 +0300 Subject: openssl: fix indentation --- pkgs/development/libraries/openssl/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 1e0f419c5f73c..304b575eb925b 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -57,20 +57,20 @@ let rm "$out/lib/"*.a fi - mkdir -p $bin - mv $out/bin $bin/ + mkdir -p $bin + mv $out/bin $bin/ - mkdir $dev - mv $out/include $dev/ + mkdir $dev + mv $out/include $dev/ # remove dependency on Perl at runtime - rm -r $out/etc/ssl/misc + rm -r $out/etc/ssl/misc rmdir $out/etc/ssl/{certs,private} ''; postFixup = '' - # Check to make sure the main output doesn't depend on perl + # Check to make sure the main output doesn't depend on perl if grep -r '${perl}' $out; then echo "Found an erroneous dependency on perl ^^^" >&2 exit 1 -- cgit 1.4.1 From bb9fa90dca09fc02f5bdd0548c3e7d156b02da80 Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 11:48:47 -0500 Subject: gnum4: disable tests --- pkgs/development/tools/misc/gnum4/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix index 7216e1e169d05..eda98091fc64c 100644 --- a/pkgs/development/tools/misc/gnum4/default.nix +++ b/pkgs/development/tools/misc/gnum4/default.nix @@ -8,10 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0w0da1chh12mczxa5lnwzjk9czi3dq6gnnndbpa6w4rj76b1yklf"; }; - doCheck = !stdenv.isDarwin - && !stdenv.isCygwin # XXX: `test-dup2' fails on Cygwin - && !stdenv.isSunOS # XXX: `test-setlocale2.sh' fails - && !stdenv.isFreeBSD; # XXX: test 084 fails + doCheck = false; configureFlags = "--with-syscmd-shell=${stdenv.shell}"; -- cgit 1.4.1 From db3ffaa8f0e335c305936313fb658a7482c283cc Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 11:55:43 -0500 Subject: httpretty: working build for python3 --- pkgs/development/python-modules/httpretty/setup.py.patch | 11 +++++++++++ pkgs/top-level/python-packages.nix | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/httpretty/setup.py.patch diff --git a/pkgs/development/python-modules/httpretty/setup.py.patch b/pkgs/development/python-modules/httpretty/setup.py.patch new file mode 100644 index 0000000000000..e07ba931705b8 --- /dev/null +++ b/pkgs/development/python-modules/httpretty/setup.py.patch @@ -0,0 +1,11 @@ +--- setup.py 2016-04-18 10:44:27.915536022 -0500 ++++ setup-new.py 2016-04-18 10:44:13.515537377 -0500 +@@ -75,7 +75,7 @@ + + + local_file = lambda *f: \ +- open(os.path.join(os.path.dirname(__file__), *f)).read() ++ open(os.path.join(os.path.dirname(__file__), *f), encoding="utf-8").read() + + + install_requires, dependency_links = \ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9e3605827d3fc..89b8bebf9c049 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10420,7 +10420,6 @@ in modules // { httpretty = buildPythonPackage rec { name = "httpretty-${version}"; version = "0.8.6"; - disabled = isPy3k; doCheck = false; src = pkgs.fetchurl { @@ -10442,6 +10441,9 @@ in modules // { --- 566 ---- ! 'content-length': str(len(self.body)) DIFF + + # Explicit encoding flag is required with python3, unless locale is set. + patch -p0 -i ${../development/python-modules/httpretty/setup.py.patch} ''; meta = { -- cgit 1.4.1 From a3ef1ad66c7867f78e64eca8352ab20ac53bac23 Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 12:25:01 -0500 Subject: httpretty: make patch conditional on python version --- pkgs/top-level/python-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 89b8bebf9c049..87dab9a52c8fa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10443,7 +10443,8 @@ in modules // { DIFF # Explicit encoding flag is required with python3, unless locale is set. - patch -p0 -i ${../development/python-modules/httpretty/setup.py.patch} + ${if !self.isPy3k then "" else + "patch -p0 -i ${../development/python-modules/httpretty/setup.py.patch}"} ''; meta = { -- cgit 1.4.1 From eb604134f7fdd95c78d7979e826cd165b1f627f2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 10:32:21 -0500 Subject: kde5_latest.frameworks: 5.19 -> 5.21 --- pkgs/desktops/kde-5/frameworks-5.21/attica.nix | 11 + pkgs/desktops/kde-5/frameworks-5.21/baloo.nix | 25 + pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix | 17 + .../kde-5/frameworks-5.21/breeze-icons.nix | 10 + pkgs/desktops/kde-5/frameworks-5.21/default.nix | 121 +++++ .../extra-cmake-modules/default.nix | 20 + .../extra-cmake-modules/nix-lib-path.patch | 37 ++ .../frameworks-5.21/extra-cmake-modules/series | 1 + .../extra-cmake-modules/setup-hook.sh | 80 +++ pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh | 57 ++ .../kde-5/frameworks-5.21/frameworkintegration.nix | 17 + .../kde-5/frameworks-5.21/kactivities-stats.nix | 9 + .../desktops/kde-5/frameworks-5.21/kactivities.nix | 19 + pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix | 12 + pkgs/desktops/kde-5/frameworks-5.21/karchive.nix | 11 + .../kauth/cmake-install-paths.patch | 17 + .../kde-5/frameworks-5.21/kauth/default.nix | 16 + .../kauth/kauth-policy-install.patch | 13 + pkgs/desktops/kde-5/frameworks-5.21/kauth/series | 1 + pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix | 25 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../kde-5/frameworks-5.21/kcmutils/default.nix | 17 + pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix | 11 + .../desktops/kde-5/frameworks-5.21/kcompletion.nix | 14 + pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix | 16 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../frameworks-5.21/kconfigwidgets/default.nix | 18 + .../desktops/kde-5/frameworks-5.21/kcoreaddons.nix | 16 + pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix | 16 + .../desktops/kde-5/frameworks-5.21/kdbusaddons.nix | 17 + .../kde-5/frameworks-5.21/kdeclarative.nix | 22 + pkgs/desktops/kde-5/frameworks-5.21/kded.nix | 19 + .../kde-5/frameworks-5.21/kdelibs4support.nix | 32 ++ .../frameworks-5.21/kdelibs4support/default.nix | 36 ++ .../kdelibs4support/nix-kde-include-dir.patch | 13 + .../kde-5/frameworks-5.21/kdelibs4support/series | 1 + .../frameworks-5.21/kdelibs4support/setup-hook.sh | 1 + .../kde-5/frameworks-5.21/kdesignerplugin.nix | 34 ++ pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix | 13 + pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix | 13 + pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix | 13 + .../kde-5/frameworks-5.21/kdoctools/default.nix | 19 + .../kdoctools/kdoctools-no-find-docbook-xml.patch | 12 + .../kde-5/frameworks-5.21/kdoctools/setup-hook.sh | 5 + pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix | 17 + .../kde-5/frameworks-5.21/kfilemetadata.nix | 13 + .../kfilemetadata/cmake-install-paths.patch | 13 + .../frameworks-5.21/kfilemetadata/default.nix | 14 + .../kde-5/frameworks-5.21/kfilemetadata/series | 1 + .../kde-5/frameworks-5.21/kglobalaccel.nix | 23 + pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix | 13 + pkgs/desktops/kde-5/frameworks-5.21/khtml.nix | 21 + pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix | 17 + .../kiconthemes/default-theme-breeze.patch | 13 + .../kde-5/frameworks-5.21/kiconthemes/default.nix | 18 + .../kde-5/frameworks-5.21/kiconthemes/series | 1 + pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix | 15 + .../kde-5/frameworks-5.21/kimageformats.nix | 13 + .../kde-5/frameworks-5.21/kinit/default.nix | 17 + .../frameworks-5.21/kinit/kinit-libpath.patch | 34 ++ pkgs/desktops/kde-5/frameworks-5.21/kinit/series | 1 + .../desktops/kde-5/frameworks-5.21/kio/default.nix | 33 ++ .../frameworks-5.21/kio/samba-search-path.patch | 28 + pkgs/desktops/kde-5/frameworks-5.21/kio/series | 1 + .../desktops/kde-5/frameworks-5.21/kitemmodels.nix | 11 + pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix | 11 + .../desktops/kde-5/frameworks-5.21/kjobwidgets.nix | 16 + pkgs/desktops/kde-5/frameworks-5.21/kjs.nix | 16 + pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix | 17 + .../kde-5/frameworks-5.21/kmediaplayer.nix | 15 + pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix | 17 + .../kde-5/frameworks-5.21/knotifications.nix | 21 + .../kde-5/frameworks-5.21/knotifyconfig.nix | 13 + .../kpackage/allow-external-paths.patch | 13 + .../kde-5/frameworks-5.21/kpackage/default.nix | 23 + .../kpackage/qdiriterator-follow-symlinks.patch | 26 + .../desktops/kde-5/frameworks-5.21/kpackage/series | 2 + pkgs/desktops/kde-5/frameworks-5.21/kparts.nix | 17 + pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix | 15 + pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix | 11 + pkgs/desktops/kde-5/frameworks-5.21/kpty.nix | 10 + pkgs/desktops/kde-5/frameworks-5.21/kross.nix | 14 + pkgs/desktops/kde-5/frameworks-5.21/krunner.nix | 16 + .../0001-qdiriterator-follow-symlinks.patch | 25 + .../kservice/0002-no-canonicalize-path.patch | 25 + .../kde-5/frameworks-5.21/kservice/default.nix | 18 + .../kde-5/frameworks-5.21/kservice/setup-hook.sh | 43 ++ .../kde-5/frameworks-5.21/ktexteditor/default.nix | 22 + .../ktexteditor/no-qcoreapplication.patch | 36 ++ .../kde-5/frameworks-5.21/ktexteditor/series | 1 + .../kde-5/frameworks-5.21/ktextwidgets.nix | 16 + .../kde-5/frameworks-5.21/kunitconversion.nix | 10 + pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix | 21 + .../kde-5/frameworks-5.21/kwidgetsaddons.nix | 11 + .../kde-5/frameworks-5.21/kwindowsystem.nix | 13 + pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix | 18 + .../kde-5/frameworks-5.21/kxmlrpcclient.nix | 10 + .../kde-5/frameworks-5.21/modemmanager-qt.nix | 13 + .../kde-5/frameworks-5.21/networkmanager-qt.nix | 13 + .../kde-5/frameworks-5.21/oxygen-icons5.nix | 13 + .../frameworks-5.21/plasma-framework/default.nix | 25 + pkgs/desktops/kde-5/frameworks-5.21/solid.nix | 17 + pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix | 13 + pkgs/desktops/kde-5/frameworks-5.21/srcs.nix | 573 +++++++++++++++++++++ .../kde-5/frameworks-5.21/threadweaver.nix | 11 + pkgs/top-level/all-packages.nix | 2 +- 106 files changed, 2465 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/attica.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/baloo.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh create mode 100755 pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/karchive.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kauth/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kded.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/khtml.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kinit/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kio/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kjs.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpackage/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kparts.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kpty.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kross.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/krunner.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/solid.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/srcs.nix create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/attica.nix b/pkgs/desktops/kde-5/frameworks-5.21/attica.nix new file mode 100644 index 0000000000000..98721876c1204 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/attica.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "attica"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix new file mode 100644 index 0000000000000..38c41d9271d86 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig +, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime +, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid +}: + +kdeFramework { + name = "baloo"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + kconfig kcrash kdbusaddons lmdb qtquick1 solid + ]; + propagatedBuildInputs = [ + kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase + ]; + postInstall = '' + wrapQtProgram "$out/bin/baloo_file" + wrapQtProgram "$out/bin/baloo_file_extractor" + wrapQtProgram "$out/bin/balooctl" + wrapQtProgram "$out/bin/baloosearch" + wrapQtProgram "$out/bin/balooshow" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix new file mode 100644 index 0000000000000..f981b0516f720 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtdeclarative +}: + +kdeFramework { + name = "bluez-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtdeclarative ]; + preConfigure = '' + substituteInPlace CMakeLists.txt \ + --replace /lib/udev/rules.d "$out/lib/udev/rules.d" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix new file mode 100644 index 0000000000000..44cc99daf261b --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix @@ -0,0 +1,10 @@ +{ kdeFramework +, extra-cmake-modules +, qtsvg +}: + +kdeFramework { + name = "breeze-icons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtsvg ]; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/default.nix new file mode 100644 index 0000000000000..e88538a78b326 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/default.nix @@ -0,0 +1,121 @@ +# Maintainer's Notes: +# +# Minor updates: +# 1. Edit ./fetchsrcs.sh to point to the updated URL. +# 2. Run ./fetchsrcs.sh. +# 3. Build and enjoy. +# +# Major updates: +# We prefer not to immediately overwrite older versions with major updates, so +# make a copy of this directory first. After copying, be sure to delete ./tmp +# if it exists. Then follow the minor update instructions. Be sure to check if +# any new components have been added and package them as necessary. + +{ pkgs, debug ? false }: + +let + + inherit (pkgs) lib makeSetupHook stdenv; + + mirror = "mirror://kde"; + srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; + + packages = self: with self; { + kdeFramework = args: + let + inherit (args) name; + inherit (srcs."${name}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + outputs = args.outputs or [ "dev" "out" ]; + + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); + + attica = callPackage ./attica.nix {}; + baloo = callPackage ./baloo.nix {}; + bluez-qt = callPackage ./bluez-qt.nix {}; + breeze-icons = callPackage ./breeze-icons.nix {}; + extra-cmake-modules = callPackage ./extra-cmake-modules {}; + frameworkintegration = callPackage ./frameworkintegration.nix {}; + kactivities = callPackage ./kactivities.nix {}; + kactivities-stats = callPackage ./kactivities-stats.nix {}; + kapidox = callPackage ./kapidox.nix {}; + karchive = callPackage ./karchive.nix {}; + kauth = callPackage ./kauth {}; + kbookmarks = callPackage ./kbookmarks.nix {}; + kcmutils = callPackage ./kcmutils {}; + kcodecs = callPackage ./kcodecs.nix {}; + kcompletion = callPackage ./kcompletion.nix {}; + kconfig = callPackage ./kconfig.nix {}; + kconfigwidgets = callPackage ./kconfigwidgets {}; + kcoreaddons = callPackage ./kcoreaddons.nix {}; + kcrash = callPackage ./kcrash.nix {}; + kdbusaddons = callPackage ./kdbusaddons.nix {}; + kdeclarative = callPackage ./kdeclarative.nix {}; + kded = callPackage ./kded.nix {}; + kdelibs4support = callPackage ./kdelibs4support {}; + kdesignerplugin = callPackage ./kdesignerplugin.nix {}; + kdesu = callPackage ./kdesu.nix {}; + kdewebkit = callPackage ./kdewebkit.nix {}; + kdnssd = callPackage ./kdnssd.nix {}; + kdoctools = callPackage ./kdoctools {}; + kemoticons = callPackage ./kemoticons.nix {}; + kfilemetadata = callPackage ./kfilemetadata {}; + kglobalaccel = callPackage ./kglobalaccel.nix {}; + kguiaddons = callPackage ./kguiaddons.nix {}; + khtml = callPackage ./khtml.nix {}; + ki18n = callPackage ./ki18n.nix {}; + kiconthemes = callPackage ./kiconthemes {}; + kidletime = callPackage ./kidletime.nix {}; + kimageformats = callPackage ./kimageformats.nix {}; + kinit = callPackage ./kinit {}; + kio = callPackage ./kio {}; + kitemmodels = callPackage ./kitemmodels.nix {}; + kitemviews = callPackage ./kitemviews.nix {}; + kjobwidgets = callPackage ./kjobwidgets.nix {}; + kjs = callPackage ./kjs.nix {}; + kjsembed = callPackage ./kjsembed.nix {}; + kmediaplayer = callPackage ./kmediaplayer.nix {}; + knewstuff = callPackage ./knewstuff.nix {}; + knotifications = callPackage ./knotifications.nix {}; + knotifyconfig = callPackage ./knotifyconfig.nix {}; + kpackage = callPackage ./kpackage {}; + kparts = callPackage ./kparts.nix {}; + kpeople = callPackage ./kpeople.nix {}; + kplotting = callPackage ./kplotting.nix {}; + kpty = callPackage ./kpty.nix {}; + kross = callPackage ./kross.nix {}; + krunner = callPackage ./krunner.nix {}; + kservice = callPackage ./kservice {}; + ktexteditor = callPackage ./ktexteditor {}; + ktextwidgets = callPackage ./ktextwidgets.nix {}; + kunitconversion = callPackage ./kunitconversion.nix {}; + kwallet = callPackage ./kwallet.nix {}; + kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; + kwindowsystem = callPackage ./kwindowsystem.nix {}; + kxmlgui = callPackage ./kxmlgui.nix {}; + kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; + modemmanager-qt = callPackage ./modemmanager-qt.nix {}; + networkmanager-qt = callPackage ./networkmanager-qt.nix {}; + oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; + plasma-framework = callPackage ./plasma-framework {}; + solid = callPackage ./solid.nix {}; + sonnet = callPackage ./sonnet.nix {}; + threadweaver = callPackage ./threadweaver.nix {}; + }; + +in packages diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix new file mode 100644 index 0000000000000..1c2ea70442d32 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix @@ -0,0 +1,20 @@ +{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: + +kdeFramework { + name = "extra-cmake-modules"; + + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + + outputs = [ "out" ]; # this package has no runtime components + setupHook = ./setup-hook.sh; + + # It is OK to propagate these inputs as long as + # extra-cmake-modules is never a propagated input + # of some other derivation. + propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; + + meta = with lib; { + license = licenses.bsd2; + maintainers = [ maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch new file mode 100644 index 0000000000000..a74340a6dc969 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch @@ -0,0 +1,37 @@ +Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +=================================================================== +--- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake ++++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +@@ -200,32 +200,6 @@ + # GNUInstallDirs code deals with re-configuring, but that is dealt with + # by the _define_* macros in this module). + set(_LIBDIR_DEFAULT "lib") +-# Override this default 'lib' with 'lib64' iff: +-# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling +-# - we are NOT on debian +-# - we are on a 64 bits system +-# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf +-# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if +-# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" +-# See http://wiki.debian.org/Multiarch +-if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") +- AND NOT CMAKE_CROSSCOMPILING) +- if (EXISTS "/etc/debian_version") # is this a debian system ? +- if(CMAKE_LIBRARY_ARCHITECTURE) +- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") +- endif() +- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: +- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) +- message(AUTHOR_WARNING +- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " +- "Please enable at least one language before including KDEInstallDirs.") +- else() +- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") +- set(_LIBDIR_DEFAULT "lib64") +- endif() +- endif() +- endif() +-endif() + + set(_gnu_install_dirs_vars + BINDIR diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series new file mode 100644 index 0000000000000..b4569e50a5f73 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series @@ -0,0 +1 @@ +nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh new file mode 100644 index 0000000000000..193cb048949a8 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh @@ -0,0 +1,80 @@ +_ecmSetXdgDirs() { + addToSearchPathOnce XDG_DATA_DIRS "$1/share" + addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" +} + +_ecmPropagateSharedData() { + local sharedPaths=( \ + "config.cfg" \ + "kconf_update" \ + "kservices5" \ + "kservicetypes5" \ + "kxmlgui5" \ + "knotifications5" \ + "icons" \ + "sounds" \ + "templates" \ + "wallpapers" \ + "applications" \ + "desktop-directories" \ + "mime" \ + "dbus-1" \ + "interfaces" \ + "services" \ + "system-services" ) + for dir in ${sharedPaths[@]}; do + if [ -d "$1/share/$dir" ]; then + addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + propagateOnce propagatedBuildInputs "$1" + propagateOnce propagatedUserEnvPkgs "$1" + break + fi + done +} + +_ecmConfig() { + # Because we need to use absolute paths here, we must set *all* the paths. + cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" + cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" + cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" + cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" + cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" + cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" + cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" + cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" + cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" + cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" + cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" + cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" + cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" + cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" + cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" + cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" + cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" + cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" + cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" + cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" + cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" + cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" + cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" + cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" + cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" + cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" + cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" + cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" + cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" + cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" + cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" + cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" + cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" + cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" + cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" +} + +envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) +preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh b/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh new file mode 100755 index 0000000000000..dde749b218c01 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh @@ -0,0 +1,57 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.kde.org/stable/frameworks/5.21/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix new file mode 100644 index 0000000000000..26987c385ad5d --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion +, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications +, kwidgetsaddons, libXcursor, qtx11extras +}: + +kdeFramework { + name = "frameworkintegration"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kbookmarks kcompletion kconfig knotifications kwidgetsaddons + libXcursor + ]; + propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix new file mode 100644 index 0000000000000..c8405ce31b08a --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix @@ -0,0 +1,9 @@ +{ kdeFramework, lib, extra-cmake-modules +, boost, kactivities, kconfig }: + +kdeFramework { + name = "kactivities-stats"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ boost kactivities kconfig ]; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix new file mode 100644 index 0000000000000..7c01073e078d6 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig +, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n +, kio, kservice, kwindowsystem, kxmlgui, qtdeclarative +}: + +kdeFramework { + name = "kactivities"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + boost kcmutils kconfig kcoreaddons kdbusaddons kservice + kxmlgui + ]; + propagatedBuildInputs = [ + kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix new file mode 100644 index 0000000000000..647be8f052c39 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix @@ -0,0 +1,12 @@ +{ kdeFramework, lib +, extra-cmake-modules +, python +}: + +kdeFramework { + name = "kapidox"; + nativeBuildInputs = [ extra-cmake-modules python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix new file mode 100644 index 0000000000000..a8d9a0003c3b8 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "karchive"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch new file mode 100644 index 0000000000000..c66f5ecd008f8 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch @@ -0,0 +1,17 @@ +Index: kauth-5.18.0/KF5AuthConfig.cmake.in +=================================================================== +--- kauth-5.18.0.orig/KF5AuthConfig.cmake.in ++++ kauth-5.18.0/KF5AuthConfig.cmake.in +@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I + + set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") + set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") +-set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") ++set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") ++set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") ++set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") + + find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix new file mode 100644 index 0000000000000..1352d8c5821f5 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules +, kcoreaddons +, polkit-qt +}: + +kdeFramework { + name = "kauth"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ polkit-qt ]; + propagatedBuildInputs = [ kcoreaddons ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch b/pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch new file mode 100644 index 0000000000000..340155256f28f --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch @@ -0,0 +1,13 @@ +diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in +index e859ec7..9a8ab18 100644 +--- a/KF5AuthConfig.cmake.in ++++ b/KF5AuthConfig.cmake.in +@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") + + set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") + set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") +-set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") ++set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") + set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") + + find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/series b/pkgs/desktops/kde-5/frameworks-5.21/kauth/series new file mode 100644 index 0000000000000..d2689425c3876 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kauth/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix new file mode 100644 index 0000000000000..1a469ab4db6da --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kconfigwidgets +, kcoreaddons +, kiconthemes +, kxmlgui +}: + +kdeFramework { + name = "kbookmarks"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs + kconfig + kconfigwidgets + kcoreaddons + kiconthemes + kxmlgui + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..0d861fa95012d --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:43:53 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/kpluginselector.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp +index 9c3431d..d6b1ee2 100644 +--- a/src/kpluginselector.cpp ++++ b/src/kpluginselector.cpp +@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, + QStringList desktopFileNames; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + desktopFileNames.append(it.next()); + } +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix new file mode 100644 index 0000000000000..dbbb783ac6152 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets +, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews +, kpackage, kservice, kxmlgui +}: + +kdeFramework { + name = "kcmutils"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcoreaddons kiconthemes kitemviews kpackage kxmlgui + ]; + propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix new file mode 100644 index 0000000000000..53a69a69b69c4 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kcodecs"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix new file mode 100644 index 0000000000000..e393774f16a52 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kwidgetsaddons +}: + +kdeFramework { + name = "kcompletion"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kwidgetsaddons ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix new file mode 100644 index 0000000000000..e132afe598866 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +}: + +kdeFramework { + name = "kconfig"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kreadconfig5" + wrapQtProgram "$out/bin/kwriteconfig5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..7a6c0ee90534f --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:47:01 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/khelpclient.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp +index 53a331e..80fbb01 100644 +--- a/src/khelpclient.cpp ++++ b/src/khelpclient.cpp +@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) + QString docPath; + const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); + Q_FOREACH (const QString &dir, desktopDirs) { +- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString desktopPath(it.next()); + KDesktopFile desktopFile(desktopPath); +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix new file mode 100644 index 0000000000000..3b3bd27cce085 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig +, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper +}: + +kdeFramework { + name = "kconfigwidgets"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ kguiaddons ]; + propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + postInstall = '' + moveToOutput "bin/preparetips5" "$dev" + wrapQtProgram "$dev/bin/preparetips5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix new file mode 100644 index 0000000000000..f3a1db7bd4841 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, shared_mime_info +}: + +kdeFramework { + name = "kcoreaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ shared_mime_info ]; + postInstall = '' + wrapQtProgram "$out/bin/desktoptojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix new file mode 100644 index 0000000000000..bbab78ccb4090 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwindowsystem +, qtx11extras +}: + +kdeFramework { + name = "kcrash"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix new file mode 100644 index 0000000000000..d2ceab31d14bb --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kdbusaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + propagatedBuildInputs = [ qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kquitapp5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix new file mode 100644 index 0000000000000..74d107466cfc4 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage +, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig +, qtdeclarative +}: + +kdeFramework { + name = "kdeclarative"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + epoxy kguiaddons kiconthemes kwidgetsaddons + ]; + propagatedBuildInputs = [ + kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kpackagelauncherqml" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kded.nix b/pkgs/desktops/kde-5/frameworks-5.21/kded.nix new file mode 100644 index 0000000000000..47ae2d68c68e4 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kded.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kdoctools +, kinit +, kservice +}: + +kdeFramework { + name = "kded"; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix new file mode 100644 index 0000000000000..e61c4bb86e7c7 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix @@ -0,0 +1,32 @@ +{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth +, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels +, kinit, knotifications, kparts, kservice, ktextwidgets +, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui +, networkmanager, qtsvg, qtx11extras, xlibs +}: + +# TODO: debug docbook detection + +kdeFramework { + name = "kdelibs4support"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcompletion kconfig kded kservice kwidgetsaddons + kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM + ]; + propagatedBuildInputs = [ + kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons + kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio + kiconthemes kitemmodels kinit knotifications kparts ktextwidgets + kunitconversion kwindowsystem + ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXML4_DTD_VERSION=4.5" + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix new file mode 100644 index 0000000000000..843db83a99b23 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix @@ -0,0 +1,36 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, docbook_xml_dtd_45, kauth +, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels +, kinit, knotifications, kparts, kservice, ktextwidgets +, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui +, networkmanager, qtsvg, qtx11extras, xlibs +}: + +# TODO: debug docbook detection + +kdeFramework { + name = "kdelibs4support"; + outputs = [ "dev" "out" ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + setupHook = ./setup-hook.sh; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcompletion kconfig kded kservice kwidgetsaddons + kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM + ]; + propagatedBuildInputs = [ + kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons + kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio + kiconthemes kitemmodels kinit knotifications kparts ktextwidgets + kunitconversion kwindowsystem + ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXML4_DTD_VERSION=4.5" + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch new file mode 100644 index 0000000000000..eabb702544830 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch @@ -0,0 +1,13 @@ +Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +=================================================================== +--- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp ++++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +@@ -292,7 +292,7 @@ static QString relativeInstallPath(const + return QFile::decodeName(ICON_INSTALL_DIR "/"); + } + if (strcmp("include", type) == 0) { +- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); ++ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); + } + break; + case 'l': diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series new file mode 100644 index 0000000000000..9b08ab208774a --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series @@ -0,0 +1 @@ +nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh new file mode 100644 index 0000000000000..21ac2e83b5dae --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh @@ -0,0 +1 @@ +export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix new file mode 100644 index 0000000000000..cbc114ccca036 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix @@ -0,0 +1,34 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, kcompletion +, kconfig +, kconfigwidgets +, kcoreaddons +, kdewebkit +, kdoctools +, kiconthemes +, kio +, kitemviews +, kplotting +, ktextwidgets +, kwidgetsaddons +, kxmlgui +, sonnet +}: + +kdeFramework { + name = "kdesignerplugin"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit + kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons + kxmlgui + ]; + propagatedBuildInputs = [ kio sonnet ]; + postInstall = '' + wrapQtProgram "$out/bin/kgendesignerplugin" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix new file mode 100644 index 0000000000000..364fbd6a720bd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty +, kservice +}: + +kdeFramework { + name = "kdesu"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kservice ]; + propagatedBuildInputs = [ ki18n kpty ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix new file mode 100644 index 0000000000000..d361313d1d494 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit +}: + +kdeFramework { + name = "kdewebkit"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; + propagatedBuildInputs = [ ki18n kio qtwebkit ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix new file mode 100644 index 0000000000000..f00432b0c9ce4 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, avahi +}: + +kdeFramework { + name = "kdnssd"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ avahi ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix new file mode 100644 index 0000000000000..f67c19f42395a --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 +, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages +}: + +kdeFramework { + name = "kdoctools"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive ]; + propagatedBuildInputs = [ ki18n ]; + propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" + ]; + patches = [ ./kdoctools-no-find-docbook-xml.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch new file mode 100644 index 0000000000000..4e3a33efab32b --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch @@ -0,0 +1,12 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 5c4863c..f731775 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES + ) + + +-find_package(DocBookXML4 "4.5") + + set_package_properties(DocBookXML4 PROPERTIES + TYPE REQUIRED diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh new file mode 100644 index 0000000000000..5cfffbd622d12 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh @@ -0,0 +1,5 @@ +addXdgData() { + addToSearchPath XDG_DATA_DIRS "$1/share" +} + +envHooks+=(addXdgData) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix new file mode 100644 index 0000000000000..d165f84e3a2dd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, karchive +, kconfig +, kcoreaddons +, kservice +}: + +kdeFramework { + name = "kemoticons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive kconfig kcoreaddons ]; + propagatedBuildInputs = [ kservice ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix new file mode 100644 index 0000000000000..be99c58d55041 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 +, ffmpeg, karchive, ki18n, poppler, qtbase, taglib +}: + +kdeFramework { + name = "kfilemetadata"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; + propagatedBuildInputs = [ qtbase ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch new file mode 100644 index 0000000000000..732f7b69c828d --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch @@ -0,0 +1,13 @@ +Index: kfilemetadata-5.18.0/src/CMakeLists.txt +=================================================================== +--- kfilemetadata-5.18.0.orig/src/CMakeLists.txt ++++ kfilemetadata-5.18.0/src/CMakeLists.txt +@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K + + install(EXPORT KF5FileMetaDataTargets + NAMESPACE KF5:: +- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData ++ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData + FILE KF5FileMetaDataTargets.cmake) + + install(FILES diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix new file mode 100644 index 0000000000000..9bb4831cf8da2 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules +, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib +}: + +kdeFramework { + name = "kfilemetadata"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; + propagatedBuildInputs = [ qtbase ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series new file mode 100644 index 0000000000000..d2689425c3876 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix new file mode 100644 index 0000000000000..c535b3590a388 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix @@ -0,0 +1,23 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kwindowsystem +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kglobalaccel"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kglobalaccel5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix new file mode 100644 index 0000000000000..bc4e9ab11843a --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kguiaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix new file mode 100644 index 0000000000000..d40df466ebbdc --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, giflib, karchive +, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs +, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons +, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet +}: + +kdeFramework { + name = "khtml"; + nativeBuildInputs = [ extra-cmake-modules perl ]; + buildInputs = [ + giflib karchive kiconthemes knotifications kwallet kwidgetsaddons + kxmlgui phonon + ]; + propagatedBuildInputs = [ + kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets + kwindowsystem qtx11extras sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix new file mode 100644 index 0000000000000..268006512e7c3 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, gettext +, python +, qtdeclarative +, qtscript +}: + +kdeFramework { + name = "ki18n"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtdeclarative qtscript ]; + propagatedNativeBuildInputs = [ gettext python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch new file mode 100644 index 0000000000000..5b3b15d5d5b5b --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch @@ -0,0 +1,13 @@ +Index: kiconthemes-5.17.0/src/kicontheme.cpp +=================================================================== +--- kiconthemes-5.17.0.orig/src/kicontheme.cpp ++++ kiconthemes-5.17.0/src/kicontheme.cpp +@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() + // static + QString KIconTheme::defaultThemeName() + { +- return QStringLiteral("oxygen"); ++ return QStringLiteral("breeze"); + } + + void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix new file mode 100644 index 0000000000000..b78b25582bebd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper +, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg +}: + +kdeFramework { + name = "kiconthemes"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfigwidgets kitemviews qtsvg ]; + propagatedBuildInputs = [ breeze-icons ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/kiconfinder5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series new file mode 100644 index 0000000000000..ab5cc8a3edb27 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series @@ -0,0 +1 @@ +default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix new file mode 100644 index 0000000000000..fc0865600239f --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtbase +, qtx11extras +}: + +kdeFramework { + name = "kidletime"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + propagatedBuildInputs = [ qtbase ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix new file mode 100644 index 0000000000000..49d66bbcc2c64 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, ilmbase +}: + +kdeFramework { + name = "kimageformats"; + nativeBuildInputs = [ extra-cmake-modules ]; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix new file mode 100644 index 0000000000000..64210ca76051c --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash +, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap +, libcap_progs +}: + +# TODO: setuid wrapper + +kdeFramework { + name = "kinit"; + nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; + buildInputs = [ kconfig kcrash kservice libcap ]; + propagatedBuildInputs = [ ki18n kio kwindowsystem ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch new file mode 100644 index 0000000000000..47538fbe45675 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch @@ -0,0 +1,34 @@ +Index: kinit-5.21.0/src/kdeinit/kinit.cpp +=================================================================== +--- kinit-5.21.0.orig/src/kdeinit/kinit.cpp ++++ kinit-5.21.0/src/kdeinit/kinit.cpp +@@ -657,19 +657,16 @@ static pid_t launch(int argc, const char + + if (!libpath.isEmpty()) { + if (libpath_relative) { +- // NB: Because Qt makes the actual dlopen() call, the +- // RUNPATH of kdeinit is *not* respected - see +- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 +- // - so we try hacking it in ourselves +- QString install_lib_dir = QFile::decodeName( +- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); +- QString orig_libpath = libpath; +- libpath = install_lib_dir + libpath; +- l.setFileName(libpath); +- if (!l.load()) { +- libpath = orig_libpath; +- l.setFileName(libpath); +- l.load(); ++ // Try to load the library relative to the active profiles. ++ QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); ++ // Reverse the profile list. ++ std::reverse(profiles.begin(), profiles.end()); ++ const QString libdir = QString::fromLatin1("/lib/"); ++ Q_FOREACH (const QByteArray &profile, profiles) { ++ if (!profile.isEmpty()) { ++ l.setFileName(QFile::decodeName(profile) + libdir + libpath); ++ if (l.load()) break; ++ } + } + } else { + l.load(); diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/series b/pkgs/desktops/kde-5/frameworks-5.21/kinit/series new file mode 100644 index 0000000000000..5faa456366b92 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kinit/series @@ -0,0 +1 @@ +kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix new file mode 100644 index 0000000000000..a2131ff338505 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix @@ -0,0 +1,33 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, acl, karchive +, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews +, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet +, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper +, qtscript, qtx11extras, solid +}: + +kdeFramework { + name = "kio"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + acl karchive kconfig kcoreaddons kdbusaddons kiconthemes + knotifications ktextwidgets kwallet kwidgetsaddons + qtscript + ]; + propagatedBuildInputs = [ + kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets + kservice kwindowsystem kxmlgui solid qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/kcookiejar5" + wrapQtProgram "$out/bin/ktelnetservice5" + wrapQtProgram "$out/bin/ktrash5" + wrapQtProgram "$out/bin/kmailservice5" + wrapQtProgram "$out/bin/protocoltojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch new file mode 100644 index 0000000000000..c9ad46b41bb76 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch @@ -0,0 +1,28 @@ +Index: kio-5.17.0/src/core/ksambashare.cpp +=================================================================== +--- kio-5.17.0.orig/src/core/ksambashare.cpp ++++ kio-5.17.0/src/core/ksambashare.cpp +@@ -67,13 +67,18 @@ KSambaSharePrivate::~KSambaSharePrivate( + + bool KSambaSharePrivate::isSambaInstalled() + { +- if (QFile::exists(QStringLiteral("/usr/sbin/smbd")) +- || QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) { +- return true; ++ const QByteArray pathEnv = qgetenv("PATH"); ++ if (!pathEnv.isEmpty()) { ++ QLatin1Char pathSep(':'); ++ QStringList paths = QFile::decodeName(pathEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/smbd"); ++ if (QFile::exists(*it)) { ++ return true; ++ } ++ } + } + +- //qDebug() << "Samba is not installed!"; +- + return false; + } + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/series b/pkgs/desktops/kde-5/frameworks-5.21/kio/series new file mode 100644 index 0000000000000..77ca154500474 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kio/series @@ -0,0 +1 @@ +samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix new file mode 100644 index 0000000000000..a9024d771cc33 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemmodels"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix new file mode 100644 index 0000000000000..931019ce495d7 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemviews"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix new file mode 100644 index 0000000000000..746edf12eea03 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwidgetsaddons +, qtx11extras +}: + +kdeFramework { + name = "kjobwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kwidgetsaddons ]; + propagatedBuildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix new file mode 100644 index 0000000000000..768720f178c87 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +}: + +kdeFramework { + name = "kjs"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kjs5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix new file mode 100644 index 0000000000000..22eef2d47bde6 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs +, makeQtWrapper, qtsvg +}: + +kdeFramework { + name = "kjsembed"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ qtsvg ]; + propagatedBuildInputs = [ ki18n kjs ]; + postInstall = '' + wrapQtProgram "$out/bin/kjscmd5" + wrapQtProgram "$out/bin/kjsconsole" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix new file mode 100644 index 0000000000000..460458b22323a --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kparts +, kxmlgui +}: + +kdeFramework { + name = "kmediaplayer"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kxmlgui ]; + propagatedBuildInputs = [ kparts ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix new file mode 100644 index 0000000000000..5bcd6f3014624 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, karchive +, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio +, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui +}: + +kdeFramework { + name = "knewstuff"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + karchive kcompletion kconfig kcoreaddons kiconthemes + kitemviews ktextwidgets kwidgetsaddons + ]; + propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix new file mode 100644 index 0000000000000..7e301dd0f2683 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kcoreaddons +, kwindowsystem +, phonon +, qtx11extras +}: + +kdeFramework { + name = "knotifications"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs kconfig kcoreaddons phonon + ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix new file mode 100644 index 0000000000000..dd99d2d4f1e57 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, ki18n, kio, phonon +}: + +kdeFramework { + name = "knotifyconfig"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcompletion kconfig phonon ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch new file mode 100644 index 0000000000000..e9d7444481480 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch @@ -0,0 +1,13 @@ +Index: kpackage-5.18.0/src/kpackage/package.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/package.cpp ++++ kpackage-5.18.0/src/kpackage/package.cpp +@@ -808,7 +808,7 @@ PackagePrivate::PackagePrivate() + : QSharedData(), + fallbackPackage(0), + metadata(0), +- externalPaths(false), ++ externalPaths(true), + valid(false), + checkedValid(false) + { diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix new file mode 100644 index 0000000000000..aea1b0d31a0d9 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix @@ -0,0 +1,23 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules +, karchive +, kconfig +, kcoreaddons +, kdoctools +, ki18n +, makeQtWrapper +}: + +kdeFramework { + name = "kpackage"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ karchive kconfig ]; + propagatedBuildInputs = [ kcoreaddons ki18n ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + postInstall = '' + wrapQtProgram "$out/bin/kpackagetool5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..ddbf17d00064c --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch @@ -0,0 +1,26 @@ +Index: kpackage-5.18.0/src/kpackage/packageloader.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/packageloader.cpp ++++ kpackage-5.18.0/src/kpackage/packageloader.cpp +@@ -241,7 +241,7 @@ QList PackageLoader::li + } else { + //qDebug() << "Not cached"; + // If there's no cache file, fall back to listing the directory +- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; ++ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; + const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")) << QStringLiteral("metadata.json"); + + QDirIterator it(plugindir, nameFilters, QDir::Files, flags); +Index: kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/private/packagejobthread.cpp ++++ kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp +@@ -146,7 +146,7 @@ bool indexDirectory(const QString& dir, + + QJsonArray plugins; + +- QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories); ++ QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + it.next(); + const QString path = it.fileInfo().absoluteFilePath(); diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/series new file mode 100644 index 0000000000000..9b7f076efc70e --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/series @@ -0,0 +1,2 @@ +allow-external-paths.patch +qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix new file mode 100644 index 0000000000000..1c3e0b2cbc519 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice +, ktextwidgets, kwidgetsaddons, kxmlgui +}: + +kdeFramework { + name = "kparts"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kconfig kcoreaddons kiconthemes kjobwidgets knotifications + kservice kwidgetsaddons + ]; + propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix new file mode 100644 index 0000000000000..4c3877e7efd2f --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n +, kitemviews, kservice, kwidgetsaddons, qtdeclarative +}: + +kdeFramework { + name = "kpeople"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcoreaddons kitemviews kservice kwidgetsaddons + ]; + propagatedBuildInputs = [ ki18n qtdeclarative ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix new file mode 100644 index 0000000000000..c16f51b5ac3cd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kplotting"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix new file mode 100644 index 0000000000000..2e34e6f674cee --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }: + +kdeFramework { + name = "kpty"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ kcoreaddons ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kross.nix b/pkgs/desktops/kde-5/frameworks-5.21/kross.nix new file mode 100644 index 0000000000000..7c6f079feaa7c --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kross.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kcoreaddons +, kdoctools, ki18n, kiconthemes, kio, kparts, kwidgetsaddons +, kxmlgui, qtscript +}: + +kdeFramework { + name = "kross"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ kcompletion kcoreaddons kxmlgui ]; + propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix new file mode 100644 index 0000000000000..12d2b54d0eb36 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kio, kservice, plasma-framework, qtquick1, solid +, threadweaver +}: + +kdeFramework { + name = "krunner"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kconfig kcoreaddons kservice qtquick1 solid threadweaver + ]; + propagatedBuildInputs = [ ki18n kio plasma-framework ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..3d8397d8ee2df --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:28:57 -0500 +Subject: [PATCH 1/2] qdiriterator follow symlinks + +--- + src/sycoca/kbuildsycoca.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp +index 1deae14..250baa8 100644 +--- a/src/sycoca/kbuildsycoca.cpp ++++ b/src/sycoca/kbuildsycoca.cpp +@@ -208,7 +208,7 @@ bool KBuildSycoca::build() + QStringList relFiles; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString filePath = it.next(); + Q_ASSERT(filePath.startsWith(dir)); // due to the line below... +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch new file mode 100644 index 0000000000000..685c685261195 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch @@ -0,0 +1,25 @@ +From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:31:29 -0500 +Subject: [PATCH 2/2] no canonicalize path + +--- + src/sycoca/vfolder_menu.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp +index d3e31c3..d15d743 100644 +--- a/src/sycoca/vfolder_menu.cpp ++++ b/src/sycoca/vfolder_menu.cpp +@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR + } + + if (!relative) { +- QString resolved = QDir(dir).canonicalPath(); ++ QString resolved = QDir::cleanPath(dir); + if (!resolved.isEmpty()) { + dir = resolved; + } +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix new file mode 100644 index 0000000000000..3a27d85b9166e --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem +}: + +kdeFramework { + name = "kservice"; + propagatedNativeBuildInputs = [ extra-cmake-modules ]; + nativeBuildInputs = [ kdoctools ]; + buildInputs = [ kcrash kdbusaddons ]; + propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; + patches = [ + ./0001-qdiriterator-follow-symlinks.patch + ./0002-no-canonicalize-path.patch + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh new file mode 100644 index 0000000000000..c28e862ff8aea --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh @@ -0,0 +1,43 @@ +addServicePkg() { + local propagated + for dir in "share/kservices5" "share/kservicetypes5"; do + if [[ -d "$1/$dir" ]]; then + propagated= + for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs $1" + fi + + propagated= + for pkg in $propagatedUserEnvPkgs; do + if [[ "z$pkg" == "z$1" ]]; then + propagated=1 + break + fi + done + if [[ -z $propagated ]]; then + propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" + fi + + break + fi + done +} + +envHooks+=(addServicePkg) + +local propagated +for pkg in $propagatedBuildInputs; do + if [[ "z$pkg" == "z@out@" ]]; then + propagated=1 + break + fi +done +if [[ -z $propagated ]]; then + propagatedBuildInputs="$propagatedBuildInputs @out@" +fi diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix new file mode 100644 index 0000000000000..b8df6a5f4c0d4 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper, perl +, karchive, kconfig, kguiaddons, kiconthemes, kparts +, libgit2 +, qtscript, qtxmlpatterns +, ki18n, kio, sonnet +}: + +kdeFramework { + name = "ktexteditor"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; + buildInputs = [ + karchive kconfig kguiaddons kiconthemes kparts + libgit2 + qtscript qtxmlpatterns + ]; + propagatedBuildInputs = [ ki18n kio sonnet ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch new file mode 100644 index 0000000000000..19ab1e1e55138 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch @@ -0,0 +1,36 @@ +Index: ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp +=================================================================== +--- ktexteditor-5.18.0.orig/src/syntax/data/katehighlightingindexer.cpp ++++ ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp +@@ -55,19 +55,16 @@ QStringList readListing(const QString &f + + int main(int argc, char *argv[]) + { +- // get app instance +- QCoreApplication app(argc, argv); +- + // ensure enough arguments are passed +- if (app.arguments().size() < 3) ++ if (argc < 3) + return 1; + + // open schema + QXmlSchema schema; +- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) ++ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) + return 2; + +- const QString hlFilenamesListing = app.arguments().value(3); ++ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); + if (hlFilenamesListing.isEmpty()) { + return 1; + } +@@ -152,7 +149,7 @@ int main(int argc, char *argv[]) + return anyError; + + // create outfile, after all has worked! +- QFile outFile(app.arguments().at(1)); ++ QFile outFile(QString::fromLocal8Bit(argv[1])); + if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) + return 7; + diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series new file mode 100644 index 0000000000000..46cd23829a2fd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series @@ -0,0 +1 @@ +no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix new file mode 100644 index 0000000000000..e332d4ff9a832 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem +, sonnet +}: + +kdeFramework { + name = "ktextwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kiconthemes kservice + ]; + propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix new file mode 100644 index 0000000000000..3cf0f847d83d5 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n }: + +kdeFramework { + name = "kunitconversion"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix new file mode 100644 index 0000000000000..5ade5f63a8d04 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets +, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes +, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt +, makeQtWrapper }: + +kdeFramework { + name = "kwallet"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes + knotifications kservice kwidgetsaddons libgcrypt + ]; + propagatedBuildInputs = [ ki18n kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/kwalletd5" + wrapQtProgram "$out/bin/kwallet-query" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix new file mode 100644 index 0000000000000..d95f44d3fecfd --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kwidgetsaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix new file mode 100644 index 0000000000000..09ab1f2200de3 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kwindowsystem"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix new file mode 100644 index 0000000000000..f081d5f9170e3 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, kconfig +, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews +, ktextwidgets, kwindowsystem, sonnet +}: + +kdeFramework { + name = "kxmlgui"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + attica kconfig kiconthemes kitemviews ktextwidgets + ]; + propagatedBuildInputs = [ + kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix new file mode 100644 index 0000000000000..20a300b68bc87 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: + +kdeFramework { + name = "kxmlrpcclient"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix new file mode 100644 index 0000000000000..7d7f769d6a9be --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, modemmanager +}: + +kdeFramework { + name = "modemmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ modemmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix new file mode 100644 index 0000000000000..333378bd14316 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, networkmanager +}: + +kdeFramework { + name = "networkmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ networkmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix new file mode 100644 index 0000000000000..ee350f8e15367 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix @@ -0,0 +1,13 @@ +{ kdeFramework +, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "oxygen-icons5"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix new file mode 100644 index 0000000000000..d8846f7772318 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative +, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio +, knotifications, kpackage, kservice, kwindowsystem, kxmlgui +, makeQtWrapper, qtscript, qtx11extras +}: + +kdeFramework { + name = "plasma-framework"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons + kiconthemes knotifications kxmlgui qtscript + ]; + propagatedBuildInputs = [ + kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem + qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/plasmapkg2" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/solid.nix b/pkgs/desktops/kde-5/frameworks-5.21/solid.nix new file mode 100644 index 0000000000000..afd125e3c5973 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/solid.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtdeclarative +}: + +kdeFramework { + name = "solid"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ qtdeclarative ]; + postInstall = '' + wrapQtProgram "$out/bin/solid-hardware5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix new file mode 100644 index 0000000000000..943fe04a1c92c --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, hunspell +}: + +kdeFramework { + name = "sonnet"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ hunspell ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix new file mode 100644 index 0000000000000..a4a1f95c52ceb --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix @@ -0,0 +1,573 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/attica-5.21.0.tar.xz"; + sha256 = "1aqfw73g424f60qmpx1lky3qfqrsl1id02388pnlmpa8fnpp940c"; + name = "attica-5.21.0.tar.xz"; + }; + }; + baloo = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/baloo-5.21.0.tar.xz"; + sha256 = "1a5sl2bkrs90mfks93q2hrijp6dpapp2l0fhq7km36mvsrc78yqn"; + name = "baloo-5.21.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/bluez-qt-5.21.0.tar.xz"; + sha256 = "0nsnxa4k31l69fapxn49g112948zprc5xr7v3ggxwnxkb1pll60a"; + name = "bluez-qt-5.21.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/breeze-icons-5.21.0.tar.xz"; + sha256 = "1a7ikdq8a44n42i6swf29aqyfwjh05ir3ym0lzjzdb6133fzlb01"; + name = "breeze-icons-5.21.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/extra-cmake-modules-5.21.0.tar.xz"; + sha256 = "1kbc5fkcbz9vkg0jpz10vsfgwajlrsmbl0vrbls5qvrdgbgrwlm3"; + name = "extra-cmake-modules-5.21.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/frameworkintegration-5.21.0.tar.xz"; + sha256 = "0mbpn18cjzd8xznk73slvals86lv77ram09px4l44xgyf019xll8"; + name = "frameworkintegration-5.21.0.tar.xz"; + }; + }; + kactivities = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kactivities-5.21.0.tar.xz"; + sha256 = "09jr7m6vaffdb879jph1ckgri0b9pdyh5q39i7fyi6s277rybcyk"; + name = "kactivities-5.21.0.tar.xz"; + }; + }; + kactivities-stats = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kactivities-stats-5.21.0.tar.xz"; + sha256 = "0vd01b812r0ggbnqsq3y6ik68v0668rzx6npl3h11wdrvlidhyqf"; + name = "kactivities-stats-5.21.0.tar.xz"; + }; + }; + kapidox = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kapidox-5.21.0.tar.xz"; + sha256 = "0w3jch93d8vdqd0g4yl2fxmamrg9hnx1lypnpgw7615wlsb02qyx"; + name = "kapidox-5.21.0.tar.xz"; + }; + }; + karchive = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/karchive-5.21.0.tar.xz"; + sha256 = "042ww21wmm3sf87zqgr2qiyg2j5mjf1mmqpqhpcax4gnjpck5nvc"; + name = "karchive-5.21.0.tar.xz"; + }; + }; + kauth = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kauth-5.21.0.tar.xz"; + sha256 = "03dy36g9y04p3533l2y0m0jlr91m94y0i4wpnlr5ndgccif2a63r"; + name = "kauth-5.21.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kbookmarks-5.21.0.tar.xz"; + sha256 = "0qxq5wbddaj1cpjd34q8k65brfbb677gs0y5zh24mqbwcr0rfs6g"; + name = "kbookmarks-5.21.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcmutils-5.21.0.tar.xz"; + sha256 = "01ch3y43r4cb1sj0gy5a8wq3c6wpx2brn96d7rjm3r3hh5n5xdlj"; + name = "kcmutils-5.21.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcodecs-5.21.0.tar.xz"; + sha256 = "0wng7kqqxrsz7b4w163j6m2zdhb5pvgbd9n6bn7ggyldn4zl86w7"; + name = "kcodecs-5.21.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcompletion-5.21.0.tar.xz"; + sha256 = "0r6gsnsjkfvwhrpkch7y44m2yqyxb42bdkc35jxrm8y7xaa8nwi4"; + name = "kcompletion-5.21.0.tar.xz"; + }; + }; + kconfig = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kconfig-5.21.0.tar.xz"; + sha256 = "0w5wvy3yhgh64k8jghyv5fkx9jr828yl11jlihg24hfplnmihkxw"; + name = "kconfig-5.21.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kconfigwidgets-5.21.0.tar.xz"; + sha256 = "030iq46bwiaixn2wf6285y2gg7h1y5xqf6d6bg3xcz0v1xjd3n0f"; + name = "kconfigwidgets-5.21.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcoreaddons-5.21.0.tar.xz"; + sha256 = "16226z60simxgfriwsm6srx39f7wm64mdl39qxaa77wn07i8xmsi"; + name = "kcoreaddons-5.21.0.tar.xz"; + }; + }; + kcrash = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcrash-5.21.0.tar.xz"; + sha256 = "1mrbmfkzd0dy42ppq8gl1z9liprq722w4f3a499iamqnlsdwq2w8"; + name = "kcrash-5.21.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdbusaddons-5.21.0.tar.xz"; + sha256 = "1yvpan0plm80sw0wai39ffvpswyzy7xiqra69cb8mfxcdl8acjjw"; + name = "kdbusaddons-5.21.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdeclarative-5.21.0.tar.xz"; + sha256 = "1m61js8kdnif1106vxs5bv830hyj8j2whv5mlshkj9jbpp9v5qkj"; + name = "kdeclarative-5.21.0.tar.xz"; + }; + }; + kded = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kded-5.21.0.tar.xz"; + sha256 = "138svq07zgabn6razkqp5zxdlw9ajr1966icd82mxsxq1cjgfl4g"; + name = "kded-5.21.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kdelibs4support-5.21.0.tar.xz"; + sha256 = "1q1wyfry2ypa1mk01rabva0cq1ai9lmq8ygsji413p6c1avfrywc"; + name = "kdelibs4support-5.21.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdesignerplugin-5.21.0.tar.xz"; + sha256 = "0rj79mdgdcm0wlramx5s53ba0jkhravcgkl570ds7s3wwa1aa62j"; + name = "kdesignerplugin-5.21.0.tar.xz"; + }; + }; + kdesu = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdesu-5.21.0.tar.xz"; + sha256 = "13daljcjgrvybj7hbv6l9cwc6cdh45d2zz2ch7cbar46z2zxh5qb"; + name = "kdesu-5.21.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdewebkit-5.21.0.tar.xz"; + sha256 = "1rc5i265sagvbqwy96i4dnksc4vnrq864z3rkxqlrx2blwq08550"; + name = "kdewebkit-5.21.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdnssd-5.21.0.tar.xz"; + sha256 = "0k3qia322cd2h9pcf7k0fg7w91jxc503digjv93vhsfzfhbadf9l"; + name = "kdnssd-5.21.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdoctools-5.21.0.tar.xz"; + sha256 = "16ysqwvwmxas56rhg68rzkipszqqahh787ww9rkq9ak2r6d29r6c"; + name = "kdoctools-5.21.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kemoticons-5.21.0.tar.xz"; + sha256 = "1paddfylh1xb4g4h939lzvy7f67syyfsx76gz7w5mdbnqk5xc7fc"; + name = "kemoticons-5.21.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kfilemetadata-5.21.0.tar.xz"; + sha256 = "1jmcvzazcw5klmnzd17a7x6rcwjb6xdrxrn1jjiq8kibdbghx7l0"; + name = "kfilemetadata-5.21.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kglobalaccel-5.21.0.tar.xz"; + sha256 = "1bdd613ybz1cl25sx3ihdfzsjwlxyjx9blidmzbnvv0lb2304hwp"; + name = "kglobalaccel-5.21.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kguiaddons-5.21.0.tar.xz"; + sha256 = "01hdrcdsiq3qs620jprv65kk4pvldlm70aghjsi9wk7j3x6qid2x"; + name = "kguiaddons-5.21.0.tar.xz"; + }; + }; + khtml = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/khtml-5.21.0.tar.xz"; + sha256 = "17xvzklhhp6k9wi94s7agc8qnb7gwvx3aa5jbq6d76qn0rsqbzhv"; + name = "khtml-5.21.0.tar.xz"; + }; + }; + ki18n = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ki18n-5.21.0.tar.xz"; + sha256 = "0qm9p77zqz2jy0j5yfv5v6pqska25p790yy1b6wg1gd67561q5bn"; + name = "ki18n-5.21.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kiconthemes-5.21.0.tar.xz"; + sha256 = "14a43jca1cyh45dbz5c9lc5yqc376qg3q2c420bk5s44ynpnhp4i"; + name = "kiconthemes-5.21.0.tar.xz"; + }; + }; + kidletime = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kidletime-5.21.0.tar.xz"; + sha256 = "10vdx2sp3hjp20saqlyqdz83jbqhsqyk7gl063lhz00mnk7nk1mn"; + name = "kidletime-5.21.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kimageformats-5.21.0.tar.xz"; + sha256 = "09m0w5f39y9gq0g00iapay3v09kk24lqwiyjq4y487il865p22ph"; + name = "kimageformats-5.21.0.tar.xz"; + }; + }; + kinit = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kinit-5.21.0.tar.xz"; + sha256 = "19avsq0bi2ys574n0dcn65chd7wrpyp354xfsw45gig28skjiir5"; + name = "kinit-5.21.0.tar.xz"; + }; + }; + kio = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kio-5.21.0.tar.xz"; + sha256 = "08wrjimkv255gbc9y7pxilwxi9nikg3196rzs0fbw4vqdlzl0gjq"; + name = "kio-5.21.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kitemmodels-5.21.0.tar.xz"; + sha256 = "1bp02vp08bwsd64wnrr3ivy4k8g1vzv1s5iyiqj99d1gk0fxvv7d"; + name = "kitemmodels-5.21.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kitemviews-5.21.0.tar.xz"; + sha256 = "16yzcyrg8wa8fvz749x8dbixyga1ggls1fvjns6gdbz5aqm6ib4d"; + name = "kitemviews-5.21.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kjobwidgets-5.21.0.tar.xz"; + sha256 = "0y8zmz6wx4igbpc0jlsxrr1yxgyq8hsmynl9fqy3lc2bzmwr9wcp"; + name = "kjobwidgets-5.21.0.tar.xz"; + }; + }; + kjs = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kjs-5.21.0.tar.xz"; + sha256 = "0vsgmz0yn1if11xfbw3f9p0kg2dv1rb26ging4fc860wv2j5gyln"; + name = "kjs-5.21.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kjsembed-5.21.0.tar.xz"; + sha256 = "1nbc12m86s90y8f5gp62l4f9v4hqy8cmzw4sh0655sczd5vbkvki"; + name = "kjsembed-5.21.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kmediaplayer-5.21.0.tar.xz"; + sha256 = "1hz7l95w57z73wg9ypbqpkxvkw42wgbymv67lg4vdxppplnkqriz"; + name = "kmediaplayer-5.21.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knewstuff-5.21.0.tar.xz"; + sha256 = "05r11r9r789686i36y0x770f1pc7dwvqzdzclrx22r3lbz708pga"; + name = "knewstuff-5.21.0.tar.xz"; + }; + }; + knotifications = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knotifications-5.21.0.tar.xz"; + sha256 = "0iia73ai2s5w8c3j1kmc8bb7yp1d2cv0yd2k3ilaxf3y9wgsp4x8"; + name = "knotifications-5.21.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knotifyconfig-5.21.0.tar.xz"; + sha256 = "1mqal5ndr3v54lp7a9a2fm0c0hsiqb7kziw56rz0xd659328k9ix"; + name = "knotifyconfig-5.21.0.tar.xz"; + }; + }; + kpackage = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpackage-5.21.0.tar.xz"; + sha256 = "024k15v0b24hivkjpn3gwn2wdfsng9ralz414i858qj0lm688xk5"; + name = "kpackage-5.21.0.tar.xz"; + }; + }; + kparts = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kparts-5.21.0.tar.xz"; + sha256 = "1s1nk1vdnb3g0ilv2b1m783h8g52yr9hpqz0vscj56m9cn2sf8rv"; + name = "kparts-5.21.0.tar.xz"; + }; + }; + kpeople = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpeople-5.21.0.tar.xz"; + sha256 = "0nfpv4g9zvja9sv3zbpyksbvz1xa8lmncg48awrwbrmf83bxvcjq"; + name = "kpeople-5.21.0.tar.xz"; + }; + }; + kplotting = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kplotting-5.21.0.tar.xz"; + sha256 = "1hrpv1qg6qx4y4wvyq0rxfi0ngq1lgd5l3vwi00ri86xm1qbs4hk"; + name = "kplotting-5.21.0.tar.xz"; + }; + }; + kpty = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpty-5.21.0.tar.xz"; + sha256 = "1vzgpmagjggssva6r57hd094dv3vxf3gpsr3xpvspa9l1mk4d35c"; + name = "kpty-5.21.0.tar.xz"; + }; + }; + kross = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kross-5.21.0.tar.xz"; + sha256 = "0c1gbaifzswz4dcdwzka5mnlm07i463dpwc2fihmzn67skm4ybix"; + name = "kross-5.21.0.tar.xz"; + }; + }; + krunner = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/krunner-5.21.0.tar.xz"; + sha256 = "1jn8fr83c71kz25yzd1qay9as6dvzl1xvlg1vyspdifxg43vqzq4"; + name = "krunner-5.21.0.tar.xz"; + }; + }; + kservice = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kservice-5.21.0.tar.xz"; + sha256 = "19cnapz23ji5p01r9rgj91rzph3mqqrmnfwprmi9p3h2w68njhv6"; + name = "kservice-5.21.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ktexteditor-5.21.0.tar.xz"; + sha256 = "1m9zipx5kisxsy037py709c2ri5qvix6n362l981kbbvcgkpiaq2"; + name = "ktexteditor-5.21.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ktextwidgets-5.21.0.tar.xz"; + sha256 = "11nsi6j9b2678bqaa0ykp8as5lw1v9421b73dd1qxqrpdqfkxyzn"; + name = "ktextwidgets-5.21.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kunitconversion-5.21.0.tar.xz"; + sha256 = "03vnls5df0c2bqyw9a04hlc3cn34y6xwx693klh27jmm37r776yh"; + name = "kunitconversion-5.21.0.tar.xz"; + }; + }; + kwallet = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwallet-5.21.0.tar.xz"; + sha256 = "1rmfy21r2p79gwg1kq26g2fqnclbsww9rz3py368pk4s1lrzafii"; + name = "kwallet-5.21.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwidgetsaddons-5.21.0.tar.xz"; + sha256 = "1gqyc0j77sm6i2511qnz0sllmfxjgjb9qpi8551np16zviqa52k7"; + name = "kwidgetsaddons-5.21.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwindowsystem-5.21.0.tar.xz"; + sha256 = "13lfwpw5a4in0mp5y8d15jg6xhhrka2qmw73wrdzcvj22n6ldzzi"; + name = "kwindowsystem-5.21.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kxmlgui-5.21.0.tar.xz"; + sha256 = "1cb6n016ffvxy8dbbhc3dwlzdqpq0pbvly416qlvlc1lv70lxyfj"; + name = "kxmlgui-5.21.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kxmlrpcclient-5.21.0.tar.xz"; + sha256 = "082qpnvgm9r81iip9akakbf5rqmxb0r8y6gp7jk49q29lvkrx1kh"; + name = "kxmlrpcclient-5.21.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/modemmanager-qt-5.21.0.tar.xz"; + sha256 = "1w0kjp2pmgss45g63930lbn1c018ld2snng6h40saxi76n8cv57n"; + name = "modemmanager-qt-5.21.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/networkmanager-qt-5.21.0.tar.xz"; + sha256 = "0iy4a4qb1am2y7w03jg6n7q69c46y4gdpb72r6qjrnm9d4c2xsg1"; + name = "networkmanager-qt-5.21.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/oxygen-icons5-5.21.0.tar.xz"; + sha256 = "00qh1h3xx392hh73zdlknc1j9i2sck9ys74a9ffkf6an4rl0hws5"; + name = "oxygen-icons5-5.21.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/plasma-framework-5.21.0.tar.xz"; + sha256 = "006k8y8dnar371b5qhikny6rda3vg810jy53sl9yps695j0y39c0"; + name = "plasma-framework-5.21.0.tar.xz"; + }; + }; + solid = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/solid-5.21.0.tar.xz"; + sha256 = "13r9zcf7sr6vg5wlqjms2q7vl4g8gpzqghp3y25ldglhj0z7252r"; + name = "solid-5.21.0.tar.xz"; + }; + }; + sonnet = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/sonnet-5.21.0.tar.xz"; + sha256 = "088b87r80lds6jr0lnqxv0bd4isy2mkcgrq7hxfni7r2h6vn3xcd"; + name = "sonnet-5.21.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/threadweaver-5.21.0.tar.xz"; + sha256 = "17l23jj9bsixhg3gpv5sjrlc6w1kmjwlfb0z17drdkyzs5ak80ry"; + name = "threadweaver-5.21.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix new file mode 100644 index 0000000000000..52817921cc723 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "threadweaver"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 60cfa4c31b51d..6dfd259aab9d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15591,7 +15591,7 @@ in kde5_latest = let - frameworks = import ../desktops/kde-5/frameworks-5.19 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.5 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-15.12 { inherit pkgs; }; merged = self: -- cgit 1.4.1 From 3dded2e72a18644f81a60fa8b63e33b74f66e799 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 11:00:51 -0500 Subject: kde5_latest.applications: 15.12.03 -> 16.04.0 --- pkgs/desktops/kde-5/applications-16.04/ark.nix | 58 + .../kde-5/applications-16.04/baloo-widgets.nix | 35 + pkgs/desktops/kde-5/applications-16.04/default.nix | 59 + .../kde-5/applications-16.04/dolphin-plugins.nix | 31 + pkgs/desktops/kde-5/applications-16.04/dolphin.nix | 70 + .../desktops/kde-5/applications-16.04/fetchsrcs.sh | 56 + .../kde-5/applications-16.04/ffmpegthumbs.nix | 21 + .../kde-5/applications-16.04/filelight.nix | 35 + pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix | 21 + .../desktops/kde-5/applications-16.04/gwenview.nix | 44 + pkgs/desktops/kde-5/applications-16.04/kate.nix | 69 + pkgs/desktops/kde-5/applications-16.04/kcalc.nix | 39 + .../kde-5/applications-16.04/kcolorchooser.nix | 16 + pkgs/desktops/kde-5/applications-16.04/kde-app.nix | 25 + .../kde-5/applications-16.04/kde-locale-4.nix | 27 + .../kde-5/applications-16.04/kde-locale-5.nix | 24 + .../kdegraphics-thumbnailers.nix | 23 + .../kdelibs/0001-old-kde4-cmake-policies.patch | 56 + .../kdelibs/0002-polkit-install-path.patch | 25 + .../kdelibs/0003-remove_xdg_impurities.patch | 47 + .../kde-5/applications-16.04/kdelibs/default.nix | 45 + .../kde-5/applications-16.04/kdelibs/setup-hook.sh | 10 + .../applications-16.04/kdenetwork-filesharing.nix | 29 + pkgs/desktops/kde-5/applications-16.04/kgpg.nix | 38 + .../kde-5/applications-16.04/kio-extras.nix | 42 + pkgs/desktops/kde-5/applications-16.04/konsole.nix | 68 + pkgs/desktops/kde-5/applications-16.04/l10n.nix | 244 +++ .../kde-5/applications-16.04/libkdcraw.nix | 19 + .../kde-5/applications-16.04/libkexiv2.nix | 19 + pkgs/desktops/kde-5/applications-16.04/libkipi.nix | 22 + pkgs/desktops/kde-5/applications-16.04/okular.nix | 41 + .../kde-5/applications-16.04/print-manager.nix | 47 + .../kde-5/applications-16.04/spectacle.nix | 35 + pkgs/desktops/kde-5/applications-16.04/srcs.nix | 2093 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 35 files changed, 3534 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/kde-5/applications-16.04/ark.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/default.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/dolphin.nix create mode 100755 pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh create mode 100644 pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/filelight.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/gwenview.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kate.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kcalc.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kde-app.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh create mode 100644 pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kgpg.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/kio-extras.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/konsole.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/l10n.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/libkipi.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/okular.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/print-manager.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/spectacle.nix create mode 100644 pkgs/desktops/kde-5/applications-16.04/srcs.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications-16.04/ark.nix new file mode 100644 index 0000000000000..9e6f414db9e29 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/ark.nix @@ -0,0 +1,58 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, karchive +, kconfig +, kcrash +, kdbusaddons +, ki18n +, kiconthemes +, khtml +, kio +, kservice +, kpty +, kwidgetsaddons +, libarchive +, p7zip +, unrar +, unzipNLS +, zip +}: + +let PATH = lib.makeBinPath [ + p7zip unrar unzipNLS zip + ]; +in + +kdeApp { + name = "ark"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + karchive + kconfig + kcrash + kdbusaddons + kiconthemes + kservice + kpty + kwidgetsaddons + libarchive + ]; + propagatedBuildInputs = [ + khtml + ki18n + kio + ]; + postInstall = '' + wrapQtProgram "$out/bin/ark" \ + --prefix PATH : "${PATH}" + ''; + meta = { + license = with lib.licenses; [ gpl2 lgpl3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix new file mode 100644 index 0000000000000..a24928160df17 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix @@ -0,0 +1,35 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, kconfig +, kio +, ki18n +, kservice +, kfilemetadata +, baloo +, kdelibs4support +}: + +kdeApp { + name = "baloo-widgets"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kconfig + kservice + ]; + propagatedBuildInputs = [ + baloo + kdelibs4support + kfilemetadata + ki18n + kio + ]; + meta = { + license = [ lib.licenses.lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications-16.04/default.nix new file mode 100644 index 0000000000000..f9d65ac6d87d0 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/default.nix @@ -0,0 +1,59 @@ +# Maintainer's Notes: +# +# Minor updates: +# 1. Edit ./manifest.sh to point to the updated URL. Upstream sometimes +# releases updates that include only the changed packages; in this case, +# multiple URLs can be provided and the results will be merged. +# 2. Run ./manifest.sh and ./dependencies.sh. +# 3. Build and enjoy. +# +# Major updates: +# We prefer not to immediately overwrite older versions with major updates, so +# make a copy of this directory first. After copying, be sure to delete ./tmp +# if it exists. Then follow the minor update instructions. + +{ pkgs, debug ? false }: + +let + + inherit (pkgs) lib stdenv; + + srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; + mirror = "mirror://kde"; + + packages = self: with self; { + + kdeApp = import ./kde-app.nix { + inherit stdenv lib; + inherit debug srcs; + }; + + kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; + + ark = callPackage ./ark.nix {}; + baloo-widgets = callPackage ./baloo-widgets.nix {}; + dolphin = callPackage ./dolphin.nix {}; + dolphin-plugins = callPackage ./dolphin-plugins.nix {}; + ffmpegthumbs = callPackage ./ffmpegthumbs.nix {}; + filelight = callPackage ./filelight.nix {}; + gpgmepp = callPackage ./gpgmepp.nix {}; + gwenview = callPackage ./gwenview.nix {}; + kate = callPackage ./kate.nix {}; + kcalc = callPackage ./kcalc.nix {}; + kcolorchooser = callPackage ./kcolorchooser.nix {}; + kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; + kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {}; + kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; + kio-extras = callPackage ./kio-extras.nix {}; + konsole = callPackage ./konsole.nix {}; + libkdcraw = callPackage ./libkdcraw.nix {}; + libkexiv2 = callPackage ./libkexiv2.nix {}; + libkipi = callPackage ./libkipi.nix {}; + okular = callPackage ./okular.nix {}; + print-manager = callPackage ./print-manager.nix {}; + spectacle = callPackage ./spectacle.nix {}; + + l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); + }; + +in packages diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix new file mode 100644 index 0000000000000..72a08c7326143 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix @@ -0,0 +1,31 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, kxmlgui +, ki18n +, kio +, kdelibs4support +, dolphin +}: + +kdeApp { + name = "dolphin-plugins"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kxmlgui + dolphin + ]; + propagatedBuildInputs = [ + kdelibs4support + ki18n + kio + ]; + meta = { + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications-16.04/dolphin.nix new file mode 100644 index 0000000000000..3218146f510e9 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/dolphin.nix @@ -0,0 +1,70 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kinit +, kcmutils +, kcoreaddons +, knewstuff +, ki18n +, kdbusaddons +, kbookmarks +, kconfig +, kio +, kparts +, solid +, kiconthemes +, kcompletion +, ktexteditor +, kwindowsystem +, knotifications +, kactivities +, phonon +, baloo +, baloo-widgets +, kfilemetadata +, kdelibs4support +}: + +kdeApp { + name = "dolphin"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kinit + kcmutils + kcoreaddons + knewstuff + kdbusaddons + kbookmarks + kconfig + kparts + solid + kiconthemes + kcompletion + knotifications + phonon + baloo-widgets + ]; + propagatedBuildInputs = [ + baloo + kactivities + kdelibs4support + kfilemetadata + ki18n + kio + ktexteditor + kwindowsystem + ]; + postInstall = '' + wrapQtProgram "$out/bin/dolphin" + ''; + meta = { + license = with lib.licenses; [ gpl2 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh b/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh new file mode 100755 index 0000000000000..2b130c7e3aff8 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/fetchsrcs.sh @@ -0,0 +1,56 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +WGET_ARGS='http://download.kde.org/stable/applications/16.04.0/ -A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix new file mode 100644 index 0000000000000..53e9d807d647a --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix @@ -0,0 +1,21 @@ +{ kdeApp +, lib +, extra-cmake-modules +, ffmpeg +, kio +}: + +kdeApp { + name = "ffmpegthumbs"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + ffmpeg + kio + ]; + meta = { + license = with lib.licenses; [ gpl2 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications-16.04/filelight.nix new file mode 100644 index 0000000000000..df5e097a540e0 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/filelight.nix @@ -0,0 +1,35 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, qtscript +, kio +, solid +, kxmlgui +, kparts +}: + +kdeApp { + name = "filelight"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kio + kparts + qtscript + solid + kxmlgui + ]; + + postInstall = '' + wrapQtProgram "$out/bin/filelight" + ''; + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ fridh vcunat ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix new file mode 100644 index 0000000000000..ac14573dcaa3f --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix @@ -0,0 +1,21 @@ +{ kdeApp +, lib +, extra-cmake-modules +, boost +, gpgme +}: + +kdeApp { + name = "gpgmepp"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + boost + gpgme + ]; + meta = { + license = with lib.licenses; [ lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications-16.04/gwenview.nix new file mode 100644 index 0000000000000..732ac11e96d0e --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/gwenview.nix @@ -0,0 +1,44 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, baloo +, exiv2 +, kactivities +, kdelibs4support +, kio +, lcms2 +, phonon +, qtsvg +, qtx11extras +}: + +kdeApp { + name = "gwenview"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + exiv2 + lcms2 + phonon + qtsvg + ]; + propagatedBuildInputs = [ + baloo + kactivities + kdelibs4support + kio + qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/gwenview" + ''; + meta = { + license = with lib.licenses; [ gpl2 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications-16.04/kate.nix new file mode 100644 index 0000000000000..91eeb2314a4c4 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kate.nix @@ -0,0 +1,69 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, qtscript +, kactivities +, kconfig +, kcrash +, kguiaddons +, kiconthemes +, ki18n +, kinit +, kjobwidgets +, kio +, kparts +, ktexteditor +, kwindowsystem +, kxmlgui +, kdbusaddons +, kwallet +, plasma-framework +, kitemmodels +, knotifications +, threadweaver +, knewstuff +, libgit2 +}: + +kdeApp { + name = "kate"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + qtscript + kconfig + kcrash + kguiaddons + kiconthemes + kinit + kjobwidgets + kparts + kxmlgui + kdbusaddons + kwallet + kitemmodels + knotifications + threadweaver + knewstuff + libgit2 + ]; + propagatedBuildInputs = [ + kactivities + ki18n + kio + ktexteditor + kwindowsystem + plasma-framework + ]; + postInstall = '' + wrapQtProgram "$out/bin/kate" + wrapQtProgram "$out/bin/kwrite" + ''; + meta = { + license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications-16.04/kcalc.nix new file mode 100644 index 0000000000000..e4c8e9d69253d --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kcalc.nix @@ -0,0 +1,39 @@ +{ kdeApp +, lib +, makeQtWrapper +, extra-cmake-modules +, gmp +, kdoctools +, kconfig +, kconfigwidgets +, kguiaddons +, kinit +, knotifications +}: + +kdeApp { + name = "kcalc"; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + + buildInputs = [ + gmp + kconfig + kconfigwidgets + kguiaddons + kinit + knotifications + ]; + + postInstall = '' + wrapQtProgram "$out/bin/kcalc" + ''; + + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = [ lib.maintainers.fridh ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix new file mode 100644 index 0000000000000..0f8e8fbee8294 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix @@ -0,0 +1,16 @@ +{ kdeApp, lib +, extra-cmake-modules +, ki18n, kwidgetsaddons, kxmlgui +}: + +kdeApp { + name = "kcolorchooser"; + + meta = { + license = with lib.licenses; [ mit ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; + + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ ki18n kwidgetsaddons kxmlgui ]; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-app.nix b/pkgs/desktops/kde-5/applications-16.04/kde-app.nix new file mode 100644 index 0000000000000..2f1fdc1d643c5 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kde-app.nix @@ -0,0 +1,25 @@ +{ stdenv, lib, debug, srcs }: + +args: + +let + inherit (args) name; + sname = args.sname or name; + inherit (srcs."${sname}") src version; +in +stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + outputs = args.outputs or [ "dev" "out" ]; + + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + + meta = { + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); +}) diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix b/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix new file mode 100644 index 0000000000000..e83794c60d818 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kde-locale-4.nix @@ -0,0 +1,27 @@ +name: args: + +{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }: + +kdeApp (args // { + sname = "kde-l10n-${name}"; + name = "kde-l10n-${name}-qt4"; + + outputs = [ "out" ]; + + nativeBuildInputs = + [ automoc4 cmake gettext perl ] + ++ (args.nativeBuildInputs or []); + buildInputs = + [ kdelibs ] + ++ (args.buildInputs or []); + + preConfigure = '' + sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt + ${args.preConfigure or ""} + ''; + + preFixup = '' + propagatedBuildInputs= + propagatedNativeBuildInputs= + ''; +}) diff --git a/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix b/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix new file mode 100644 index 0000000000000..772ebe37e44f1 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kde-locale-5.nix @@ -0,0 +1,24 @@ +name: args: + +{ kdeApp, cmake, extra-cmake-modules, gettext, kdoctools }: + +kdeApp (args // { + sname = "kde-l10n-${name}"; + name = "kde-l10n-${name}-qt5"; + + outputs = [ "out" ]; + + nativeBuildInputs = + [ cmake extra-cmake-modules gettext kdoctools ] + ++ (args.nativeBuildInputs or []); + + preConfigure = '' + sed -e 's/add_subdirectory(4)//' -i CMakeLists.txt + ${args.preConfigure or ""} + ''; + + preFixup = '' + propagatedBuildInputs= + propagatedNativeBuildInputs= + ''; +}) diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix new file mode 100644 index 0000000000000..520bad0d066a4 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix @@ -0,0 +1,23 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kio +, libkexiv2 +, libkdcraw +}: + +kdeApp { + name = "kdegraphics-thumbnailers"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kio + libkexiv2 + libkdcraw + ]; + meta = { + license = [ lib.licenses.lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch new file mode 100644 index 0000000000000..b7d7300e9a84d --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0001-old-kde4-cmake-policies.patch @@ -0,0 +1,56 @@ +From b43c49109694940f0a26240753e879eb629dd02d Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Mon, 7 Sep 2015 13:54:57 -0500 +Subject: [PATCH 1/2] old kde4 cmake policies + +--- + cmake/modules/FindKDE4Internal.cmake | 33 +++++++++++++++++++++++++++++++++ + 1 file changed, 33 insertions(+) + +diff --git a/cmake/modules/FindKDE4Internal.cmake b/cmake/modules/FindKDE4Internal.cmake +index 7d54b9b..c435571 100644 +--- a/cmake/modules/FindKDE4Internal.cmake ++++ b/cmake/modules/FindKDE4Internal.cmake +@@ -345,6 +345,39 @@ + # Redistribution and use is allowed according to the terms of the BSD license. + # For details see the accompanying COPYING-CMAKE-SCRIPTS file. + ++# this is required now by cmake 2.6 and so must not be skipped by if(KDE4_FOUND) below ++cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR) ++# set the cmake policies to the 2.4.x compatibility settings (may change for KDE 4.3) ++cmake_policy(VERSION 2.4.5) ++ ++# CMake 2.6, set compatibility behaviour to cmake 2.4 ++# this must be executed always, because the CMAKE_MINIMUM_REQUIRED() command above ++# resets the policy settings, so we get a lot of warnings ++ ++# CMP0000: don't require cmake_minimum_version() directly in the top level CMakeLists.txt, FindKDE4Internal.cmake is good enough ++cmake_policy(SET CMP0000 OLD) ++# CMP0002: in KDE4 we have multiple targets with the same name for the unit tests ++cmake_policy(SET CMP0002 OLD) ++# CMP0003: add the link paths to the link command as with cmake 2.4 ++cmake_policy(SET CMP0003 OLD) ++# CMP0005: keep escaping behaviour for definitions added via add_definitions() ++cmake_policy(SET CMP0005 OLD) ++# since cmake 2.6.3: NEW behaviour is that setting policies doesn't "escape" the file ++# where this is done, macros and functions are executed with the policies as they ++# were when the were defined. Keep the OLD behaviour so we can set the policies here ++# for all KDE software without the big warning ++cmake_policy(SET CMP0011 OLD) ++ ++# since cmake 2.8.4: when include()ing from inside cmake's module dir, prefer the files ++# in this directory over those from CMAKE_MODULE_PATH ++cmake_policy(SET CMP0017 NEW) ++ ++# since cmake 3.0: use of the LOCATION target property is disallowed while it is used in KDE4Macros.cmake ++if (POLICY CMP0026) ++ cmake_policy(SET CMP0026 OLD) ++endif (POLICY CMP0026) ++ ++ + # Only do something if it hasn't been found yet + if(NOT KDE4_FOUND) + +-- +2.5.0 + diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch new file mode 100644 index 0000000000000..ff0306ea1488b --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0002-polkit-install-path.patch @@ -0,0 +1,25 @@ +From fab35bac146a817f3af80f45531355fd70cd226b Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Mon, 7 Sep 2015 13:56:03 -0500 +Subject: [PATCH 2/2] polkit install path + +--- + kdecore/auth/ConfigureChecks.cmake | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/kdecore/auth/ConfigureChecks.cmake b/kdecore/auth/ConfigureChecks.cmake +index 7cf9cb5..c8334ae 100644 +--- a/kdecore/auth/ConfigureChecks.cmake ++++ b/kdecore/auth/ConfigureChecks.cmake +@@ -150,7 +150,7 @@ elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "POLKITQT-1") + ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR + ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) + +- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING ++ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING + "Where policy files generated by KAuth will be installed" FORCE) + elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") + set (KAUTH_COMPILING_FAKE_BACKEND TRUE) +-- +2.5.0 + diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch new file mode 100644 index 0000000000000..a79d7b2b7d168 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdelibs/0003-remove_xdg_impurities.patch @@ -0,0 +1,47 @@ +diff --git a/kdecore/kernel/kstandarddirs.cpp b/kdecore/kernel/kstandarddirs.cpp +index ab8f76d..2ae5089 100644 +--- a/kdecore/kernel/kstandarddirs.cpp ++++ b/kdecore/kernel/kstandarddirs.cpp +@@ -1768,12 +1768,6 @@ void KStandardDirs::addKDEDefaults() + else + { + xdgdirList.clear(); +- xdgdirList.append(QString::fromLatin1("/etc/xdg")); +-#ifdef Q_WS_WIN +- xdgdirList.append(installPath("kdedir") + QString::fromLatin1("etc/xdg")); +-#else +- xdgdirList.append(QFile::decodeName(KDESYSCONFDIR "/xdg")); +-#endif + } + + QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); +@@ -1821,10 +1815,6 @@ void KStandardDirs::addKDEDefaults() + } + } else { + xdgdirList = kdedirDataDirs; +-#ifndef Q_WS_WIN +- xdgdirList.append(QString::fromLatin1("/usr/local/share/")); +- xdgdirList.append(QString::fromLatin1("/usr/share/")); +-#endif + } + + localXdgDir = readEnvPath("XDG_DATA_HOME"); +diff --git a/solid/solid/xdgbasedirs.cpp b/solid/solid/xdgbasedirs.cpp +index 4c9cad9..6849d45 100644 +--- a/solid/solid/xdgbasedirs.cpp ++++ b/solid/solid/xdgbasedirs.cpp +@@ -70,12 +70,12 @@ QStringList Solid::XdgBaseDirs::systemPathList( const char *resource ) + { + if ( qstrncmp( "data", resource, 4 ) == 0 ) { + if ( instance()->mDataDirs.isEmpty() ) { +- instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "/usr/local/share:/usr/share" ); ++ instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "" ); + } + return instance()->mDataDirs; + } else if ( qstrncmp( "config", resource, 6 ) == 0 ) { + if ( instance()->mConfigDirs.isEmpty() ) { +- instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "/etc/xdg" ); ++ instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "" ); + } + return instance()->mConfigDirs; + } diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix b/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix new file mode 100644 index 0000000000000..389362deecc61 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdelibs/default.nix @@ -0,0 +1,45 @@ +{ kdeApp, attica, attr, automoc4, avahi, bison, cmake +, docbook_xml_dtd_42, docbook_xsl, flex, giflib, ilmbase +, libdbusmenu_qt, libjpeg, libxml2, libxslt, perl, phonon, pkgconfig +, polkit_qt4, qca2, qt4, shared_desktop_ontologies, shared_mime_info +, soprano, strigi, udev, xz, pcre +, lib +}: + +kdeApp { + name = "kdelibs"; + + outputs = [ "out" ]; + + buildInputs = [ + attica attr avahi giflib libdbusmenu_qt libjpeg libxml2 + polkit_qt4 qca2 shared_desktop_ontologies udev xz pcre + ]; + propagatedBuildInputs = [ qt4 soprano phonon strigi ]; + nativeBuildInputs = [ + automoc4 bison cmake flex libxslt perl pkgconfig shared_mime_info + ]; + + patches = [ + ./0001-old-kde4-cmake-policies.patch + ./0002-polkit-install-path.patch + ./0003-remove_xdg_impurities.patch + ]; + + # cmake does not detect path to `ilmbase` + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + + cmakeFlags = [ + "-DDOCBOOKXML_CURRENTDTD_DIR=${docbook_xml_dtd_42}/xml/dtd/docbook" + "-DDOCBOOKXSL_DIR=${docbook_xsl}/xml/xsl/docbook" + "-DWITH_SOLID_UDISKS2=ON" + "-DKDE_DEFAULT_HOME=.kde" + ]; + + setupHook = ./setup-hook.sh; + + meta = { + licenses = with lib.licenses; [ gpl2 fdl12 lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh new file mode 100644 index 0000000000000..e0a75dc8acd0d --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdelibs/setup-hook.sh @@ -0,0 +1,10 @@ +addQt4Plugins() { + if [[ -d "$1/lib/qt4/plugins" ]]; then + propagatedUserEnvPkgs+=" $1" + fi + + if [[ -d "$1/lib/kde4/plugins" ]]; then + propagatedUserEnvPkgs+=" $1" + fi +} +envHooks+=(addQt4Plugins) diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix new file mode 100644 index 0000000000000..4e99a43b3913a --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix @@ -0,0 +1,29 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, kcoreaddons +, ki18n +, kio +, kwidgetsaddons +, samba +}: + +kdeApp { + name = "kdenetwork-filesharing"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kcoreaddons + ki18n + kio + kwidgetsaddons + samba + ]; + meta = { + license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kgpg.nix b/pkgs/desktops/kde-5/applications-16.04/kgpg.nix new file mode 100644 index 0000000000000..3ee925197189e --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kgpg.nix @@ -0,0 +1,38 @@ +{ kdeApp +, lib +, automoc4 +, cmake +, makeWrapper +, perl +, pkgconfig +, boost +, gpgme +, kdelibs +, kdepimlibs +, gnupg +}: + +kdeApp { + name = "kgpg"; + nativeBuildInputs = [ + automoc4 + cmake + makeWrapper + perl + pkgconfig + ]; + buildInputs = [ + boost + gpgme + kdelibs + kdepimlibs + ]; + postInstall = '' + wrapProgram "$out/bin/kgpg" \ + --prefix PATH : "${gnupg}/bin" + ''; + meta = { + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix new file mode 100644 index 0000000000000..9de84913a2504 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix @@ -0,0 +1,42 @@ +{ kdeApp, lib +, extra-cmake-modules, kdoctools +, shared_mime_info +, exiv2 +, kactivities, karchive +, kbookmarks +, kconfig, kconfigwidgets +, kcoreaddons, kdbusaddons, kguiaddons +, kdnssd +, kiconthemes +, ki18n +, kio +, khtml +, kdelibs4support +, kpty +, libmtp +, libssh +, openexr, ilmbase +, openslp +, phonon +, qtsvg +, samba +, solid +}: + +kdeApp { + name = "kio-extras"; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; + nativeBuildInputs = [ + extra-cmake-modules kdoctools + shared_mime_info + ]; + buildInputs = [ + exiv2 kactivities karchive kbookmarks kconfig kconfigwidgets kcoreaddons + kdbusaddons kguiaddons kdnssd kiconthemes ki18n kio khtml kdelibs4support + kpty libmtp libssh openexr openslp phonon qtsvg samba solid + ]; + NIX_CFLAGS_COMPILE = [ "-I${ilmbase.dev or ilmbase}/include/OpenEXR" ]; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications-16.04/konsole.nix new file mode 100644 index 0000000000000..4b4cba2a37795 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/konsole.nix @@ -0,0 +1,68 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, qtscript +, kbookmarks +, kcompletion +, kconfig +, kconfigwidgets +, kcoreaddons +, kguiaddons +, ki18n +, kiconthemes +, kinit +, kdelibs4support +, kio +, knotifications +, knotifyconfig +, kparts +, kpty +, kservice +, ktextwidgets +, kwidgetsaddons +, kwindowsystem +, kxmlgui +}: + +kdeApp { + name = "konsole"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + qtscript + kbookmarks + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kguiaddons + kiconthemes + kinit + kio + knotifications + knotifyconfig + kparts + kpty + kservice + ktextwidgets + kwidgetsaddons + kxmlgui + ]; + propagatedBuildInputs = [ + kdelibs4support + ki18n + kwindowsystem + ]; + postInstall = '' + wrapQtProgram "$out/bin/konsole" + ''; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/l10n.nix b/pkgs/desktops/kde-5/applications-16.04/l10n.nix new file mode 100644 index 0000000000000..9b211faf44488 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/l10n.nix @@ -0,0 +1,244 @@ +{ callPackage, pkgs, lib }: + +let + + kdeLocale4 = import ./kde-locale-4.nix; + kdeLocale5 = import ./kde-locale-5.nix; + +in + +lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { + ar = { + qt4 = callPackage (kdeLocale4 "ar" {}) {}; + qt5 = callPackage (kdeLocale5 "ar" {}) {}; + }; + bg = { + qt4 = callPackage (kdeLocale4 "bg" {}) {}; + qt5 = callPackage (kdeLocale5 "bg" {}) {}; + }; + bs = { + qt4 = callPackage (kdeLocale4 "bs" {}) {}; + qt5 = callPackage (kdeLocale5 "bs" {}) {}; + }; + ca = { + qt4 = callPackage (kdeLocale4 "ca" {}) {}; + qt5 = callPackage (kdeLocale5 "ca" {}) {}; + }; + ca_valencia = { + qt4 = callPackage (kdeLocale4 "ca_valencia" {}) {}; + qt5 = callPackage (kdeLocale5 "ca_valencia" {}) {}; + }; + cs = { + qt4 = callPackage (kdeLocale4 "cs" {}) {}; + qt5 = callPackage (kdeLocale5 "cs" {}) {}; + }; + da = { + qt4 = callPackage (kdeLocale4 "da" {}) {}; + qt5 = callPackage (kdeLocale5 "da" {}) {}; + }; + de = { + qt4 = callPackage (kdeLocale4 "de" {}) {}; + qt5 = callPackage (kdeLocale5 "de" {}) {}; + }; + el = { + qt4 = callPackage (kdeLocale4 "el" {}) {}; + qt5 = callPackage (kdeLocale5 "el" {}) {}; + }; + en_GB = { + qt4 = callPackage (kdeLocale4 "en_GB" {}) {}; + qt5 = callPackage (kdeLocale5 "en_GB" {}) {}; + }; + eo = { + qt4 = callPackage (kdeLocale4 "eo" {}) {}; + qt5 = callPackage (kdeLocale5 "eo" {}) {}; + }; + es = { + qt4 = callPackage (kdeLocale4 "es" {}) {}; + qt5 = callPackage (kdeLocale5 "es" {}) {}; + }; + et = { + qt4 = callPackage (kdeLocale4 "et" {}) {}; + qt5 = callPackage (kdeLocale5 "et" {}) {}; + }; + eu = { + qt4 = callPackage (kdeLocale4 "eu" {}) {}; + qt5 = callPackage (kdeLocale5 "eu" {}) {}; + }; + fa = { + qt4 = callPackage (kdeLocale4 "fa" {}) {}; + qt5 = callPackage (kdeLocale5 "fa" {}) {}; + }; + fi = { + qt4 = callPackage (kdeLocale4 "fi" {}) {}; + qt5 = callPackage (kdeLocale5 "fi" {}) {}; + }; + fr = { + qt4 = callPackage (kdeLocale4 "fr" {}) {}; + qt5 = callPackage (kdeLocale5 "fr" {}) {}; + }; + ga = { + qt4 = callPackage (kdeLocale4 "ga" {}) {}; + qt5 = callPackage (kdeLocale5 "ga" {}) {}; + }; + gl = { + qt4 = callPackage (kdeLocale4 "gl" {}) {}; + qt5 = callPackage (kdeLocale5 "gl" {}) {}; + }; + he = { + qt4 = callPackage (kdeLocale4 "he" {}) {}; + qt5 = callPackage (kdeLocale5 "he" {}) {}; + }; + hi = { + qt4 = callPackage (kdeLocale4 "hi" {}) {}; + qt5 = callPackage (kdeLocale5 "hi" {}) {}; + }; + hr = { + qt4 = callPackage (kdeLocale4 "hr" {}) {}; + qt5 = callPackage (kdeLocale5 "hr" {}) {}; + }; + hu = { + qt4 = callPackage (kdeLocale4 "hu" {}) {}; + qt5 = callPackage (kdeLocale5 "hu" {}) {}; + }; + ia = { + qt4 = callPackage (kdeLocale4 "ia" {}) {}; + qt5 = callPackage (kdeLocale5 "ia" {}) {}; + }; + id = { + qt4 = callPackage (kdeLocale4 "id" {}) {}; + qt5 = callPackage (kdeLocale5 "id" {}) {}; + }; + is = { + qt4 = callPackage (kdeLocale4 "is" {}) {}; + qt5 = callPackage (kdeLocale5 "is" {}) {}; + }; + it = { + qt4 = callPackage (kdeLocale4 "it" {}) {}; + qt5 = callPackage (kdeLocale5 "it" {}) {}; + }; + ja = { + qt4 = callPackage (kdeLocale4 "ja" {}) {}; + qt5 = callPackage (kdeLocale5 "ja" {}) {}; + }; + kk = { + qt4 = callPackage (kdeLocale4 "kk" {}) {}; + qt5 = callPackage (kdeLocale5 "kk" {}) {}; + }; + km = { + qt4 = callPackage (kdeLocale4 "km" {}) {}; + qt5 = callPackage (kdeLocale5 "km" {}) {}; + }; + ko = { + qt4 = callPackage (kdeLocale4 "ko" {}) {}; + qt5 = callPackage (kdeLocale5 "ko" {}) {}; + }; + lt = { + qt4 = callPackage (kdeLocale4 "lt" {}) {}; + qt5 = callPackage (kdeLocale5 "lt" {}) {}; + }; + lv = { + qt4 = callPackage (kdeLocale4 "lv" {}) {}; + qt5 = callPackage (kdeLocale5 "lv" {}) {}; + }; + mr = { + qt4 = callPackage (kdeLocale4 "mr" {}) {}; + qt5 = callPackage (kdeLocale5 "mr" {}) {}; + }; + nb = { + qt4 = callPackage (kdeLocale4 "nb" {}) {}; + qt5 = callPackage (kdeLocale5 "nb" {}) {}; + }; + nds = { + qt4 = callPackage (kdeLocale4 "nds" {}) {}; + qt5 = callPackage (kdeLocale5 "nds" {}) {}; + }; + nl = { + qt4 = callPackage (kdeLocale4 "nl" {}) {}; + qt5 = callPackage (kdeLocale5 "nl" {}) {}; + }; + nn = { + qt4 = callPackage (kdeLocale4 "nn" {}) {}; + qt5 = callPackage (kdeLocale5 "nn" {}) {}; + }; + pa = { + qt4 = callPackage (kdeLocale4 "pa" {}) {}; + qt5 = callPackage (kdeLocale5 "pa" {}) {}; + }; + pl = { + qt4 = callPackage (kdeLocale4 "pl" {}) {}; + qt5 = callPackage (kdeLocale5 "pl" {}) {}; + }; + pt = { + qt4 = callPackage (kdeLocale4 "pt" {}) {}; + qt5 = callPackage (kdeLocale5 "pt" {}) {}; + }; + pt_BR = { + qt4 = callPackage (kdeLocale4 "pt_BR" {}) {}; + qt5 = callPackage (kdeLocale5 "pt_BR" {}) {}; + }; + ro = { + qt4 = callPackage (kdeLocale4 "ro" {}) {}; + qt5 = callPackage (kdeLocale5 "ro" {}) {}; + }; + ru = { + qt4 = callPackage (kdeLocale4 "ru" {}) {}; + qt5 = callPackage (kdeLocale5 "ru" {}) {}; + }; + sk = { + qt4 = callPackage (kdeLocale4 "sk" {}) {}; + qt5 = callPackage (kdeLocale5 "sk" {}) {}; + }; + sl = { + qt4 = callPackage (kdeLocale4 "sl" {}) {}; + qt5 = callPackage (kdeLocale5 "sl" {}) {}; + }; + sr = { + qt4 = callPackage (kdeLocale4 "sr" { + preConfigure = '' + patchShebangs \ + 4/sr/sr@latin/scripts/ts-pmap-compile.py \ + 4/sr/scripts/ts-pmap-compile.py \ + 4/sr/data/resolve-sr-hybrid \ + 4/sr/sr@ijekavian/scripts/ts-pmap-compile.py \ + 4/sr/sr@ijekavianlatin/scripts/ts-pmap-compile.py + ''; + }) {}; + qt5 = callPackage (kdeLocale5 "sr" { + preConfigure = '' + patchShebangs 5/sr/data/resolve-sr-hybrid + sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt + ''; + }) {}; + }; + sv = { + qt4 = callPackage (kdeLocale4 "sv" {}) {}; + qt5 = callPackage (kdeLocale5 "sv" {}) {}; + }; + tr = { + qt4 = callPackage (kdeLocale4 "tr" {}) {}; + qt5 = callPackage (kdeLocale5 "tr" {}) {}; + }; + ug = { + qt4 = callPackage (kdeLocale4 "ug" {}) {}; + qt5 = callPackage (kdeLocale5 "ug" {}) {}; + }; + # TODO: build broken in 15.11.80; re-enable in next release + /* + uk = { + qt4 = callPackage (kdeLocale4 "uk" {}) {}; + qt5 = callPackage (kdeLocale5 "uk" {}) {}; + }; + */ + wa = { + qt4 = callPackage (kdeLocale4 "wa" {}) {}; + qt5 = callPackage (kdeLocale5 "wa" {}) {}; + }; + zh_CN = { + qt4 = callPackage (kdeLocale4 "zh_CN" {}) {}; + qt5 = callPackage (kdeLocale5 "zh_CN" {}) {}; + }; + zh_TW = { + qt4 = callPackage (kdeLocale4 "zh_TW" {}) {}; + qt5 = callPackage (kdeLocale5 "zh_TW" {}) {}; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix new file mode 100644 index 0000000000000..319c7fc6583d7 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix @@ -0,0 +1,19 @@ +{ kdeApp +, lib +, extra-cmake-modules +, libraw +}: + +kdeApp { + name = "libkdcraw"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + libraw + ]; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix new file mode 100644 index 0000000000000..afb1ac8365378 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix @@ -0,0 +1,19 @@ +{ kdeApp +, lib +, exiv2 +, extra-cmake-modules +}: + +kdeApp { + name = "libkexiv2"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + exiv2 + ]; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications-16.04/libkipi.nix new file mode 100644 index 0000000000000..c23cd8578fb96 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/libkipi.nix @@ -0,0 +1,22 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kconfig +, ki18n +, kservice +, kxmlgui +}: + +kdeApp { + name = "libkipi"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kconfig ki18n kservice kxmlgui + ]; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/okular.nix b/pkgs/desktops/kde-5/applications-16.04/okular.nix new file mode 100644 index 0000000000000..0691325d7a52c --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/okular.nix @@ -0,0 +1,41 @@ +{ kdeApp +, lib +, automoc4 +, cmake +, perl +, pkgconfig +, kdelibs +, qimageblitz +, poppler_qt4 +, libspectre +, libkexiv2 +, djvulibre +, libtiff +, freetype +, ebook_tools +}: + +kdeApp { + name = "okular"; + nativeBuildInputs = [ + automoc4 + cmake + perl + pkgconfig + ]; + buildInputs = [ + kdelibs + qimageblitz + poppler_qt4 + libspectre + libkexiv2 + djvulibre + libtiff + freetype + ebook_tools + ]; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix new file mode 100644 index 0000000000000..b4eab372789d6 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix @@ -0,0 +1,47 @@ +{ kdeApp +, lib +, extra-cmake-modules +, qtdeclarative +, cups +, kconfig +, kconfigwidgets +, kdbusaddons +, kiconthemes +, ki18n +, kcmutils +, kio +, knotifications +, plasma-framework +, kwidgetsaddons +, kwindowsystem +, kitemviews +}: + +kdeApp { + name = "print-manager"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + cups + kconfig + kconfigwidgets + kdbusaddons + kiconthemes + kcmutils + knotifications + kwidgetsaddons + kitemviews + ]; + propagatedBuildInputs = [ + ki18n + kio + kwindowsystem + plasma-framework + qtdeclarative + ]; + meta = { + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix new file mode 100644 index 0000000000000..dc2fb708b5311 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix @@ -0,0 +1,35 @@ +{ kdeApp, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kconfig +, kcoreaddons +, kdbusaddons +, kdeclarative +, ki18n +, kio +, knotifications +, kscreen +, kwidgetsaddons +, kwindowsystem +, kxmlgui +, libkipi +, xcb-util-cursor +}: + +kdeApp { + name = "spectacle"; + nativeBuildInputs = [ + extra-cmake-modules kdoctools makeQtWrapper + ]; + buildInputs = [ + kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications + kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor + ]; + postFixup = '' + wrapQtProgram "$out/bin/spectacle" + ''; + meta = with lib; { + maintainers = with maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/applications-16.04/srcs.nix b/pkgs/desktops/kde-5/applications-16.04/srcs.nix new file mode 100644 index 0000000000000..0185465e156c3 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/srcs.nix @@ -0,0 +1,2093 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + akonadi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/akonadi-16.04.0.tar.xz"; + sha256 = "01m032iwy3yylxxfmznhn0aly20yc07h8z0ppzgx9gz8smn8351k"; + name = "akonadi-16.04.0.tar.xz"; + }; + }; + akonadi-calendar = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/akonadi-calendar-16.04.0.tar.xz"; + sha256 = "1n06d0m2m553agn95b75sgqaijaaxdrdb6gnv4zizwjxr37cgnwm"; + name = "akonadi-calendar-16.04.0.tar.xz"; + }; + }; + akonadi-search = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/akonadi-search-16.04.0.tar.xz"; + sha256 = "101cbms0mlv86g8ld027ras5bkzfil9avbpvfh2rnlfpm2yp3jgq"; + name = "akonadi-search-16.04.0.tar.xz"; + }; + }; + analitza = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/analitza-16.04.0.tar.xz"; + sha256 = "0ir7siwxp6fi9gwri9ynp497ppg72vrbqnwaq3fk3rf9i4brib3s"; + name = "analitza-16.04.0.tar.xz"; + }; + }; + ark = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ark-16.04.0.tar.xz"; + sha256 = "07zvnslnxjz0rq90cvba6lh7gcym4z7817fdz56pjdffpcd0j9xa"; + name = "ark-16.04.0.tar.xz"; + }; + }; + artikulate = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/artikulate-16.04.0.tar.xz"; + sha256 = "00y47nzlqlhrv3xx0g0h9is2v7v2vch9vk0hmjb4sgmmri21r47i"; + name = "artikulate-16.04.0.tar.xz"; + }; + }; + audiocd-kio = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/audiocd-kio-16.04.0.tar.xz"; + sha256 = "1r1x1igihd4bvvjjf8c5xi341y7jn43ba0jh724x82ljhwjjivnh"; + name = "audiocd-kio-16.04.0.tar.xz"; + }; + }; + baloo-widgets = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/baloo-widgets-16.04.0.tar.xz"; + sha256 = "0j8l34q0nmprw0y7hcsy5rxisv19zjf757dhy7rwlbvs72a8fyn2"; + name = "baloo-widgets-16.04.0.tar.xz"; + }; + }; + blinken = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/blinken-16.04.0.tar.xz"; + sha256 = "1fi0vnxc31nd2hk7yx4gbxlmwsxsrw7yidblv3ly6j3q65ra4cgp"; + name = "blinken-16.04.0.tar.xz"; + }; + }; + bomber = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/bomber-16.04.0.tar.xz"; + sha256 = "0rv2mfn8l78zfb0apxpgqfw2zp0zvgrjx5fdqn7mhah6w2wr421i"; + name = "bomber-16.04.0.tar.xz"; + }; + }; + bovo = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/bovo-16.04.0.tar.xz"; + sha256 = "1z0wkmlvx052drdjkc3scmbqd299vq26l15qdykf7k7i69abpa91"; + name = "bovo-16.04.0.tar.xz"; + }; + }; + calendarsupport = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/calendarsupport-16.04.0.tar.xz"; + sha256 = "1l4hr59r5ns5lhvr4622i8lm99933j72v6fhjv4hmw1yvy0d97kf"; + name = "calendarsupport-16.04.0.tar.xz"; + }; + }; + cantor = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/cantor-16.04.0.tar.xz"; + sha256 = "195b974swl1aw9g9l2d4si7zvhb6jahrvkkgjyyzqrkgqj10qjgh"; + name = "cantor-16.04.0.tar.xz"; + }; + }; + cervisia = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/cervisia-16.04.0.tar.xz"; + sha256 = "049df86n0mj0jcxlwi64cf1ijm5bilgq0dn0b1av3ivb53c2k8c1"; + name = "cervisia-16.04.0.tar.xz"; + }; + }; + dolphin = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/dolphin-16.04.0.tar.xz"; + sha256 = "1cnvlcn5cgy1paxrcv9x8dnjvnivn86pr93gmscwl83p9dg3ly37"; + name = "dolphin-16.04.0.tar.xz"; + }; + }; + dolphin-plugins = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/dolphin-plugins-16.04.0.tar.xz"; + sha256 = "0r58i2w7jiznh190jqvdb7rdgyk3rnwb34hxbid02w042hsf06gp"; + name = "dolphin-plugins-16.04.0.tar.xz"; + }; + }; + dragon = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/dragon-16.04.0.tar.xz"; + sha256 = "0b81wfpxzx4wnawvkhsj16ijvdajq528m24iswxdss1ya7hcszm2"; + name = "dragon-16.04.0.tar.xz"; + }; + }; + eventviews = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/eventviews-16.04.0.tar.xz"; + sha256 = "1gyslz02y0i9fcrxg7xxcag7h7qd1g9amn2ry2rygpxcl98bzcz7"; + name = "eventviews-16.04.0.tar.xz"; + }; + }; + ffmpegthumbs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ffmpegthumbs-16.04.0.tar.xz"; + sha256 = "0jjq5gm4avi2lli3r6zd1m4v6nzc4dxd2msm6lr35nkhadamihjj"; + name = "ffmpegthumbs-16.04.0.tar.xz"; + }; + }; + filelight = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/filelight-16.04.0.tar.xz"; + sha256 = "07k1fkb5nangzzxl00jkz9jqrlzi8g9dvp1qm8s5vbpfww6gaq4a"; + name = "filelight-16.04.0.tar.xz"; + }; + }; + gpgmepp = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/gpgmepp-16.04.0.tar.xz"; + sha256 = "0k5wawmqmpsjg3q4wcg54xvs0rlkv26398gkvfhvw5kixcd71kys"; + name = "gpgmepp-16.04.0.tar.xz"; + }; + }; + granatier = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/granatier-16.04.0.tar.xz"; + sha256 = "1j5jzhyfp7jy3nzj6y2s8gy4hm1q8z3vwlx7cd7j936vk27r4vw2"; + name = "granatier-16.04.0.tar.xz"; + }; + }; + grantleetheme = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/grantleetheme-16.04.0.tar.xz"; + sha256 = "0dccrqa8nsjjljwi9z9yfx71cr6ds74k8kzkyc2bgw4zdcmw62kg"; + name = "grantleetheme-16.04.0.tar.xz"; + }; + }; + gwenview = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/gwenview-16.04.0.tar.xz"; + sha256 = "16viz9z4r3mllc4yfw7rirq9hjaxsbfv0vgckrc4mvwbpjhhbl88"; + name = "gwenview-16.04.0.tar.xz"; + }; + }; + incidenceeditor = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/incidenceeditor-16.04.0.tar.xz"; + sha256 = "08fvqpr12295dinarcfrh2m95591h1hiqyllc36asc8pwzisfb9f"; + name = "incidenceeditor-16.04.0.tar.xz"; + }; + }; + jovie = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/jovie-16.04.0.tar.xz"; + sha256 = "0xvwgpqzh7h2vl2dpzninz4r93z18giwwij4yffl8740k4fk5id5"; + name = "jovie-16.04.0.tar.xz"; + }; + }; + juk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/juk-16.04.0.tar.xz"; + sha256 = "0y4bfq6qza84s0nk6fajwg1bmn0kzjnjj2zjglas322fh8vbdz4n"; + name = "juk-16.04.0.tar.xz"; + }; + }; + kaccessible = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kaccessible-16.04.0.tar.xz"; + sha256 = "1glwmqaafvcm6gjvs2m0d2iaglqz3y1mj3g0jqips4sx32zbsgxf"; + name = "kaccessible-16.04.0.tar.xz"; + }; + }; + kaccounts-integration = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kaccounts-integration-16.04.0.tar.xz"; + sha256 = "0h84nbibzzlxs0vpklij0yczs2c53gqwdx5yvfhnipbi285wy7km"; + name = "kaccounts-integration-16.04.0.tar.xz"; + }; + }; + kaccounts-providers = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kaccounts-providers-16.04.0.tar.xz"; + sha256 = "1bmc5kycmw7r84jy7si0dap6lq011lbq050ldhba6ix5dnx0nsws"; + name = "kaccounts-providers-16.04.0.tar.xz"; + }; + }; + kajongg = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kajongg-16.04.0.tar.xz"; + sha256 = "0fasvm8x3cgw0gv1ac38xp12ncms2nf9b5r8hprjxmb5485p7mh6"; + name = "kajongg-16.04.0.tar.xz"; + }; + }; + kalarmcal = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kalarmcal-16.04.0.tar.xz"; + sha256 = "03ylk2kaidqi54zmz84alqhzkiq87kw5a0f7qfj76r8mf7lmnlki"; + name = "kalarmcal-16.04.0.tar.xz"; + }; + }; + kalgebra = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kalgebra-16.04.0.tar.xz"; + sha256 = "0clcgq89wh451dj7nib7pbbppncslnzkn3532hyw347ckisphyvc"; + name = "kalgebra-16.04.0.tar.xz"; + }; + }; + kalzium = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kalzium-16.04.0.tar.xz"; + sha256 = "1cqkgkc5m8fz7l18x0ybh85ldif15mc9gzdak8g2mdjcacxsm9nz"; + name = "kalzium-16.04.0.tar.xz"; + }; + }; + kamera = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kamera-16.04.0.tar.xz"; + sha256 = "0n6h7z9dzv2fhwmk41smzv6l1db61334drcgivjmkblmglbdi473"; + name = "kamera-16.04.0.tar.xz"; + }; + }; + kanagram = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kanagram-16.04.0.tar.xz"; + sha256 = "0g2d7zcb76a01hgbk0aid64xp8qym64a76k3vixwqzjdwf3jbcfr"; + name = "kanagram-16.04.0.tar.xz"; + }; + }; + kapman = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kapman-16.04.0.tar.xz"; + sha256 = "1arb6jiy1ikn96rsvmd87fj35kxnpdq7s0nxn747psc3wvms43wr"; + name = "kapman-16.04.0.tar.xz"; + }; + }; + kapptemplate = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kapptemplate-16.04.0.tar.xz"; + sha256 = "0bqrhzl0w499m8370idv76yz1f8n5wv418y82abd2f9qip0xk1sc"; + name = "kapptemplate-16.04.0.tar.xz"; + }; + }; + kate = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kate-16.04.0.tar.xz"; + sha256 = "13v8a4p3fnymgi682kfhfvd2h71xmhb5i1739cbf9baixsggcbnh"; + name = "kate-16.04.0.tar.xz"; + }; + }; + katomic = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/katomic-16.04.0.tar.xz"; + sha256 = "1g47gxxxy52mdf3lra98fibg93s302vavp0fi73gdy09wvm4nfk1"; + name = "katomic-16.04.0.tar.xz"; + }; + }; + kblackbox = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kblackbox-16.04.0.tar.xz"; + sha256 = "0jjyffs1aijvqan9cva6d9cfnskqp4ynvpqkx1rw2mqnvadm59g3"; + name = "kblackbox-16.04.0.tar.xz"; + }; + }; + kblocks = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kblocks-16.04.0.tar.xz"; + sha256 = "1c16s7lq4j6ixq8rvqf5cadag8cabzjgyw9hiwqix9k3csbnh5br"; + name = "kblocks-16.04.0.tar.xz"; + }; + }; + kblog = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kblog-16.04.0.tar.xz"; + sha256 = "1hhh2f8rj0nfzm1imckhk3iczzda6q1nxnd3v6bp0dnxh14yanwk"; + name = "kblog-16.04.0.tar.xz"; + }; + }; + kbounce = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kbounce-16.04.0.tar.xz"; + sha256 = "0sfrlyqkig089kn1d8fvfhl18hwrc3jygbl9sx0r87wg25w8niv7"; + name = "kbounce-16.04.0.tar.xz"; + }; + }; + kbreakout = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kbreakout-16.04.0.tar.xz"; + sha256 = "05rbxhifx8nwma1nm0ji28d3jyg6kadgb90ma573xj9i4b97ak74"; + name = "kbreakout-16.04.0.tar.xz"; + }; + }; + kbruch = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kbruch-16.04.0.tar.xz"; + sha256 = "1ncfcdcdvxd992q1brqqfq107x8q2y0235dx7z2hxvclf94npigj"; + name = "kbruch-16.04.0.tar.xz"; + }; + }; + kcachegrind = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcachegrind-16.04.0.tar.xz"; + sha256 = "0jks1gc03s2qc6x9klc6x2j8jcx05n13qn0l5qp4sny93mxxyxlv"; + name = "kcachegrind-16.04.0.tar.xz"; + }; + }; + kcalc = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcalc-16.04.0.tar.xz"; + sha256 = "15w0856jqh7vrg3a88b1mcqw63gmady3sdl1zish719jg5hjgw9i"; + name = "kcalc-16.04.0.tar.xz"; + }; + }; + kcalcore = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcalcore-16.04.0.tar.xz"; + sha256 = "1cnp93sgh13aiycwfw9zayzhk6wcxawa8cnvliyfn05809cjffwq"; + name = "kcalcore-16.04.0.tar.xz"; + }; + }; + kcalutils = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcalutils-16.04.0.tar.xz"; + sha256 = "0gz83k11idib66n9m02kql6blfv6h39slmqsx6fkbd6vlajz9wn7"; + name = "kcalutils-16.04.0.tar.xz"; + }; + }; + kcharselect = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcharselect-16.04.0.tar.xz"; + sha256 = "07gnsdnxm84whi2syyj2h2n6sq99mhjx53dndcm3y8c1ry4d2qp5"; + name = "kcharselect-16.04.0.tar.xz"; + }; + }; + kcolorchooser = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcolorchooser-16.04.0.tar.xz"; + sha256 = "0l2ahmqzrl1s3vsiwbgb05rsazqcg5zk8h5n2lg00q30glly24x3"; + name = "kcolorchooser-16.04.0.tar.xz"; + }; + }; + kcontacts = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcontacts-16.04.0.tar.xz"; + sha256 = "1ysism44p2ql95q0fkypa3w1r0fps720yj539a61g60fvdij2nsn"; + name = "kcontacts-16.04.0.tar.xz"; + }; + }; + kcron = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kcron-16.04.0.tar.xz"; + sha256 = "0dkrb4h5fnzh81c1i38j62ik5lqfai0hhyjs3zrh9av6ylzmb9yc"; + name = "kcron-16.04.0.tar.xz"; + }; + }; + kde-baseapps = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-baseapps-16.04.0.tar.xz"; + sha256 = "1py7j2j2nnxih0cyyyv27g6svrga80v4hqsi5gafk843zln5v836"; + name = "kde-baseapps-16.04.0.tar.xz"; + }; + }; + kdebugsettings = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdebugsettings-16.04.0.tar.xz"; + sha256 = "0madfi735qas20dpfx92jfcl6mcl2sfr0z5wxby5k1p1xc0rmm32"; + name = "kdebugsettings-16.04.0.tar.xz"; + }; + }; + kde-dev-scripts = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-dev-scripts-16.04.0.tar.xz"; + sha256 = "1p4aklykn463f0h6kn0brhm81lli5rl5sh4d5fgaj6r3b5s0l2gf"; + name = "kde-dev-scripts-16.04.0.tar.xz"; + }; + }; + kde-dev-utils = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-dev-utils-16.04.0.tar.xz"; + sha256 = "0ldmmww497q2lmlj16jm6k2p89931bgn841rvaj7rb6pclms1l49"; + name = "kde-dev-utils-16.04.0.tar.xz"; + }; + }; + kdeedu-data = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdeedu-data-16.04.0.tar.xz"; + sha256 = "01ps6iqdc685q3xpyjfcjy98hz29max0gl9kfppzq4nzx3hiykj9"; + name = "kdeedu-data-16.04.0.tar.xz"; + }; + }; + kdegraphics-mobipocket = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdegraphics-mobipocket-16.04.0.tar.xz"; + sha256 = "0lzj4xyjs91404k7h0mcbg8vc2jd5h2r83w83iq76b4cy2gmqhhd"; + name = "kdegraphics-mobipocket-16.04.0.tar.xz"; + }; + }; + kdegraphics-strigi-analyzer = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdegraphics-strigi-analyzer-16.04.0.tar.xz"; + sha256 = "0ibkbr7z5lz42cz65hwx0j4sjqy7k8rzj304d8ra2732mazamapj"; + name = "kdegraphics-strigi-analyzer-16.04.0.tar.xz"; + }; + }; + kdegraphics-thumbnailers = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdegraphics-thumbnailers-16.04.0.tar.xz"; + sha256 = "0qw0bq9gkasrkd4mxh30k15k50d28jkl7sc88akys91id1wn8mcb"; + name = "kdegraphics-thumbnailers-16.04.0.tar.xz"; + }; + }; + kde-l10n-ar = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ar-16.04.0.tar.xz"; + sha256 = "1rb8vqq06f83w5q81d1r5qf76yzr85kf826a0a47hfly2plaw3lc"; + name = "kde-l10n-ar-16.04.0.tar.xz"; + }; + }; + kde-l10n-ast = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ast-16.04.0.tar.xz"; + sha256 = "1lzlwyxyi9dgds8sgghzjlhkbd18w9plbli4yqrglfbxl8yc60xl"; + name = "kde-l10n-ast-16.04.0.tar.xz"; + }; + }; + kde-l10n-bg = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-bg-16.04.0.tar.xz"; + sha256 = "026apn9qz3k29dvk1pvylh9ha1m637gjhnpjmj6i03frh2ai7fqs"; + name = "kde-l10n-bg-16.04.0.tar.xz"; + }; + }; + kde-l10n-bs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-bs-16.04.0.tar.xz"; + sha256 = "0j1i6794rvdpzzqmjqcig6wh1ljrnvygwm6zr0yin4didadm78xm"; + name = "kde-l10n-bs-16.04.0.tar.xz"; + }; + }; + kde-l10n-ca = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ca-16.04.0.tar.xz"; + sha256 = "08wrdlrdqp0w7dg2ygk9pi78ynj6ipzlyxx2mqyplnj1hx2jgrw4"; + name = "kde-l10n-ca-16.04.0.tar.xz"; + }; + }; + kde-l10n-ca_valencia = { + version = "ca_valencia-16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ca@valencia-16.04.0.tar.xz"; + sha256 = "0a9dyvqng3gbn5kljq0av93b6wd7l04i57gmac0vz3qja9fyw7px"; + name = "kde-l10n-ca_valencia-16.04.0.tar.xz"; + }; + }; + kde-l10n-cs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-cs-16.04.0.tar.xz"; + sha256 = "1ai2p9hg7l7s77k45gmxdn3lqnv4mh8gdsxhbjdpqcmwxyc2zgwf"; + name = "kde-l10n-cs-16.04.0.tar.xz"; + }; + }; + kde-l10n-da = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-da-16.04.0.tar.xz"; + sha256 = "05ncpim4fpyiv2cca4dvn7d8sd031xjc4f85p1yf9inwbsj4nf5x"; + name = "kde-l10n-da-16.04.0.tar.xz"; + }; + }; + kde-l10n-de = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-de-16.04.0.tar.xz"; + sha256 = "17cbibk6lqiabyyinnj9by0jjhqzlkn09zr8m0h967704fkhnzjc"; + name = "kde-l10n-de-16.04.0.tar.xz"; + }; + }; + kde-l10n-el = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-el-16.04.0.tar.xz"; + sha256 = "15raxjj0cnnrqwr8cfdww5a93k7c17lakb88z65lpafvhnyf6mry"; + name = "kde-l10n-el-16.04.0.tar.xz"; + }; + }; + kde-l10n-en_GB = { + version = "en_GB-16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-en_GB-16.04.0.tar.xz"; + sha256 = "17dbbwmwm5mqxc0wbc27ys9izfh8jkjbvc2vnw8gd1kxqgfqy49l"; + name = "kde-l10n-en_GB-16.04.0.tar.xz"; + }; + }; + kde-l10n-eo = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-eo-16.04.0.tar.xz"; + sha256 = "03bz9hpm36lmh1g2560r2xy8fais0f7wdqj58z82kvxb2lqwr2jg"; + name = "kde-l10n-eo-16.04.0.tar.xz"; + }; + }; + kde-l10n-es = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-es-16.04.0.tar.xz"; + sha256 = "0kqvw2a7lgp9qy3ph6f6kxl3mvqlq19r99821w0hbv7qk2p9frbs"; + name = "kde-l10n-es-16.04.0.tar.xz"; + }; + }; + kde-l10n-et = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-et-16.04.0.tar.xz"; + sha256 = "1x483l2a39da9kbhh8k20s84x6zjy27f760i7y9mmkah5ryxbn68"; + name = "kde-l10n-et-16.04.0.tar.xz"; + }; + }; + kde-l10n-eu = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-eu-16.04.0.tar.xz"; + sha256 = "0z0bqnywx9crk829vdixg5kswf208qmcicvi72fiz2cwjwcqhbyg"; + name = "kde-l10n-eu-16.04.0.tar.xz"; + }; + }; + kde-l10n-fa = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-fa-16.04.0.tar.xz"; + sha256 = "1m4vdmzy94jg3rky8d8rbqrkyja6rv6jybfh1q0ydpihz9k5p5hk"; + name = "kde-l10n-fa-16.04.0.tar.xz"; + }; + }; + kde-l10n-fi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-fi-16.04.0.tar.xz"; + sha256 = "1bcblmd3dsx6slvia5x9ammw4054wsyjk6mdzgcabyi86xmm1xj8"; + name = "kde-l10n-fi-16.04.0.tar.xz"; + }; + }; + kde-l10n-fr = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-fr-16.04.0.tar.xz"; + sha256 = "1311ymksp37l1yfz8921zvbrcd4g2pygfhilmmjrww0chizxjdjf"; + name = "kde-l10n-fr-16.04.0.tar.xz"; + }; + }; + kde-l10n-ga = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ga-16.04.0.tar.xz"; + sha256 = "0iml1y2xdwchn2gqgbvcvs2fbq78drh2r6068jlrc3hixbf76wsy"; + name = "kde-l10n-ga-16.04.0.tar.xz"; + }; + }; + kde-l10n-gl = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-gl-16.04.0.tar.xz"; + sha256 = "1v1hq61fwj2x8iiqjm9fwabzgc7m044narb1108cijl7d76lsn4m"; + name = "kde-l10n-gl-16.04.0.tar.xz"; + }; + }; + kde-l10n-he = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-he-16.04.0.tar.xz"; + sha256 = "0q1gj3gffin7l0r7xlp395zj5kdil8bnrl6apk2jslg7pz929dhb"; + name = "kde-l10n-he-16.04.0.tar.xz"; + }; + }; + kde-l10n-hi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-hi-16.04.0.tar.xz"; + sha256 = "19czqc6l4jn321zwygk7b46wgsimcbf8zvl30a0rkdvspwyvaqc5"; + name = "kde-l10n-hi-16.04.0.tar.xz"; + }; + }; + kde-l10n-hr = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-hr-16.04.0.tar.xz"; + sha256 = "0bbcjrxgm5yqjz1y4ngm133hcvrp3c2z8lrycpg76g7j50w3fsi5"; + name = "kde-l10n-hr-16.04.0.tar.xz"; + }; + }; + kde-l10n-hu = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-hu-16.04.0.tar.xz"; + sha256 = "0iww0m45gdlmf0j1jw8qljqar0dsmax4sxkr6yd3kswwr6m75v2i"; + name = "kde-l10n-hu-16.04.0.tar.xz"; + }; + }; + kde-l10n-ia = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ia-16.04.0.tar.xz"; + sha256 = "0ivgp1gjxshxq1fvn254k4gni30svyqfnlfz7d8niqp3msnfmc2b"; + name = "kde-l10n-ia-16.04.0.tar.xz"; + }; + }; + kde-l10n-id = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-id-16.04.0.tar.xz"; + sha256 = "15fnm4isigmgpxsgpqhj6gbvcrlhi51491a6fnxiwa3xmrc2pva8"; + name = "kde-l10n-id-16.04.0.tar.xz"; + }; + }; + kde-l10n-is = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-is-16.04.0.tar.xz"; + sha256 = "14bl3j2kqwg6cln84k5kpm400mnm4r81xhgmjpfb3xy92ms3sycr"; + name = "kde-l10n-is-16.04.0.tar.xz"; + }; + }; + kde-l10n-it = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-it-16.04.0.tar.xz"; + sha256 = "06akl5x2x0j50gyzw3m1yavxxw3jszyfyychsihn74fk8hslzp6m"; + name = "kde-l10n-it-16.04.0.tar.xz"; + }; + }; + kde-l10n-ja = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ja-16.04.0.tar.xz"; + sha256 = "1kcmryifsjripsxwa7qa7m3ky0wxaipz9smrfhhrnw41i62sfp9a"; + name = "kde-l10n-ja-16.04.0.tar.xz"; + }; + }; + kde-l10n-kk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-kk-16.04.0.tar.xz"; + sha256 = "05c100727ydimn55jlvyynlgxzxncig2y4i4b53aslfi6h17fn0i"; + name = "kde-l10n-kk-16.04.0.tar.xz"; + }; + }; + kde-l10n-km = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-km-16.04.0.tar.xz"; + sha256 = "1shbg5vbzbgx07lbgi6ddhphh5b2bm9qd1gavls8alcgpbqj221c"; + name = "kde-l10n-km-16.04.0.tar.xz"; + }; + }; + kde-l10n-ko = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ko-16.04.0.tar.xz"; + sha256 = "1fjavkaivv6zspagqcbdhy7gdkmv38z20bv7fs45qf4470ffmwz5"; + name = "kde-l10n-ko-16.04.0.tar.xz"; + }; + }; + kde-l10n-lt = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-lt-16.04.0.tar.xz"; + sha256 = "09n4yc9grd7g3yqkgxj9x6hkygcqbx6dxi0jj6v98a5p50b78a5d"; + name = "kde-l10n-lt-16.04.0.tar.xz"; + }; + }; + kde-l10n-lv = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-lv-16.04.0.tar.xz"; + sha256 = "1c86bhsq0j0r2bmc6524g4sxc0bsw5sx6d4fxs6sxzx3bpdml5bq"; + name = "kde-l10n-lv-16.04.0.tar.xz"; + }; + }; + kde-l10n-mr = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-mr-16.04.0.tar.xz"; + sha256 = "1xp3fb99crsvf1xl45iy9q31nbs2735hxai1wlfn5h0q9scz2nin"; + name = "kde-l10n-mr-16.04.0.tar.xz"; + }; + }; + kde-l10n-nb = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-nb-16.04.0.tar.xz"; + sha256 = "1dkfwqvbh6dxfxg4gznchpkwscc4g6rgwndxzjj53lvfz69611dj"; + name = "kde-l10n-nb-16.04.0.tar.xz"; + }; + }; + kde-l10n-nds = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-nds-16.04.0.tar.xz"; + sha256 = "1pma4pn7h1r9y6dxs86xqh0ahvl04rhw8qad3cbyil2r1s7j80ac"; + name = "kde-l10n-nds-16.04.0.tar.xz"; + }; + }; + kde-l10n-nl = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-nl-16.04.0.tar.xz"; + sha256 = "0bd49aylsklgp9rqs6nk72n0za9kcp7fjzr5myfavcxliwv8lhqp"; + name = "kde-l10n-nl-16.04.0.tar.xz"; + }; + }; + kde-l10n-nn = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-nn-16.04.0.tar.xz"; + sha256 = "14acr8pchds4ib246fz6ml65qjkiifcxfs6r5hqh99l72im30hx1"; + name = "kde-l10n-nn-16.04.0.tar.xz"; + }; + }; + kde-l10n-pa = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-pa-16.04.0.tar.xz"; + sha256 = "116dssrchp0yf173m3n8hkcfyr0k02bjlda24ikknjbh50y5kqfk"; + name = "kde-l10n-pa-16.04.0.tar.xz"; + }; + }; + kde-l10n-pl = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-pl-16.04.0.tar.xz"; + sha256 = "1gibqcmgqvq9f1573jfchh7nhkd8czdi183n2smld4irsd750la8"; + name = "kde-l10n-pl-16.04.0.tar.xz"; + }; + }; + kde-l10n-pt = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-pt-16.04.0.tar.xz"; + sha256 = "1yrjhqcl93fdch9nvzc2yk30rbzxsrya3xsj54xgxv2anggbr3wr"; + name = "kde-l10n-pt-16.04.0.tar.xz"; + }; + }; + kde-l10n-pt_BR = { + version = "pt_BR-16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-pt_BR-16.04.0.tar.xz"; + sha256 = "0sbg767ddcknzs4k4v76ys00jxgqlxlggf5i9fw3dvaggs78azj7"; + name = "kde-l10n-pt_BR-16.04.0.tar.xz"; + }; + }; + kde-l10n-ro = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ro-16.04.0.tar.xz"; + sha256 = "0bz25pg9xj2n4vl2aadaj02p0jx37j3i37p7bvafsb499qpgprk2"; + name = "kde-l10n-ro-16.04.0.tar.xz"; + }; + }; + kde-l10n-ru = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ru-16.04.0.tar.xz"; + sha256 = "0jkljdc5i3hq7kkkq4gl7rh92ia4vv6m2vd74bsilibgxgb1kmah"; + name = "kde-l10n-ru-16.04.0.tar.xz"; + }; + }; + kde-l10n-sk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-sk-16.04.0.tar.xz"; + sha256 = "06lnlky47xq6fcjj70msc28q97cymsh0g4z06pbc0cyyby85521m"; + name = "kde-l10n-sk-16.04.0.tar.xz"; + }; + }; + kde-l10n-sl = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-sl-16.04.0.tar.xz"; + sha256 = "0z2d8jx117prr35malcp0ca93ipbjj55s4dm3iad2iy2q728hkmv"; + name = "kde-l10n-sl-16.04.0.tar.xz"; + }; + }; + kde-l10n-sr = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-sr-16.04.0.tar.xz"; + sha256 = "0w24mrb48qyc7diw40hwzplxb2rqlrrymvwnxbdy2d6x35hha0j4"; + name = "kde-l10n-sr-16.04.0.tar.xz"; + }; + }; + kde-l10n-sv = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-sv-16.04.0.tar.xz"; + sha256 = "039q4d2y3vwxnpz6rwgf9s1ivhrlz26gp5kx3y9cz8fhcsa4jk8j"; + name = "kde-l10n-sv-16.04.0.tar.xz"; + }; + }; + kde-l10n-tr = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-tr-16.04.0.tar.xz"; + sha256 = "1sr5xxxzs29sah0azfc71w01nbm5njhgygpzll3lfx3padsvfz49"; + name = "kde-l10n-tr-16.04.0.tar.xz"; + }; + }; + kde-l10n-ug = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-ug-16.04.0.tar.xz"; + sha256 = "16jpax5k3z8anhsf61wsi93n8ail8ybjpi31dnk859g0y50a4nr5"; + name = "kde-l10n-ug-16.04.0.tar.xz"; + }; + }; + kde-l10n-uk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-uk-16.04.0.tar.xz"; + sha256 = "1275347grzcdm0jd9mzm1ww8dsh3g2ws5ppfxs3ip7jdsxgmcqh0"; + name = "kde-l10n-uk-16.04.0.tar.xz"; + }; + }; + kde-l10n-wa = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-wa-16.04.0.tar.xz"; + sha256 = "1gz918hj908308fd49pdbw1z8252shjbng5qgfzmdgfp9nvfhc14"; + name = "kde-l10n-wa-16.04.0.tar.xz"; + }; + }; + kde-l10n-zh_CN = { + version = "zh_CN-16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-zh_CN-16.04.0.tar.xz"; + sha256 = "1kyakzig301vylmib9wjb46llllw0jjiq18wys017hzjxykx170f"; + name = "kde-l10n-zh_CN-16.04.0.tar.xz"; + }; + }; + kde-l10n-zh_TW = { + version = "zh_TW-16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-l10n/kde-l10n-zh_TW-16.04.0.tar.xz"; + sha256 = "0s2m1f4ylm6l3vp67h6v41n06pmk6762lk32wqy0l2fgg4zxrrzl"; + name = "kde-l10n-zh_TW-16.04.0.tar.xz"; + }; + }; + kdelibs = { + version = "4.14.19"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdelibs-4.14.19.tar.xz"; + sha256 = "0dfmhivd41y8c9pnag496rc8qlj78dg62liap5zdphgvi2baf8p6"; + name = "kdelibs-4.14.19.tar.xz"; + }; + }; + kdenetwork-filesharing = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdenetwork-filesharing-16.04.0.tar.xz"; + sha256 = "08rlg7ppqbi2xvq6ixjjw1xdr17n7bhzi2ymssxv8q1fmznfqhvp"; + name = "kdenetwork-filesharing-16.04.0.tar.xz"; + }; + }; + kdenetwork-strigi-analyzers = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdenetwork-strigi-analyzers-16.04.0.tar.xz"; + sha256 = "0i08niv87jn6bh6c1fknpqr7mkbg5csd8lgm39bwq551zgn7n6sw"; + name = "kdenetwork-strigi-analyzers-16.04.0.tar.xz"; + }; + }; + kdenlive = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdenlive-16.04.0.tar.xz"; + sha256 = "0ks30as7cnr9jcacj97c720pf2dn1wv8xg9mgxsin7c2lhbz8i5f"; + name = "kdenlive-16.04.0.tar.xz"; + }; + }; + kdepim = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdepim-16.04.0.tar.xz"; + sha256 = "0cd39hgr7gvv78mf5rypj7yjpfrnapd1pxad1aanlsr6ms5qdzyg"; + name = "kdepim-16.04.0.tar.xz"; + }; + }; + kdepim-addons = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdepim-addons-16.04.0.tar.xz"; + sha256 = "1dfvl0pd9269ghpjwydyws40flvw7clq2hq830m4jk6myqjccd4i"; + name = "kdepim-addons-16.04.0.tar.xz"; + }; + }; + kdepim-apps-libs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdepim-apps-libs-16.04.0.tar.xz"; + sha256 = "1slnsssd242wzk0pga4l6i8q83gdca1vgmqixz82x4pvfj62bw7w"; + name = "kdepim-apps-libs-16.04.0.tar.xz"; + }; + }; + kdepimlibs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdepimlibs-16.04.0.tar.xz"; + sha256 = "1mk8rjf918c5dfglv1sdrs6wjyf31dry4070ip3fx6kdph2x5akr"; + name = "kdepimlibs-16.04.0.tar.xz"; + }; + }; + kdepim-runtime = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdepim-runtime-16.04.0.tar.xz"; + sha256 = "0siwplwdbrsaikzfxbz9w00wk3xfg4a6y124nlwqx7588ni8brs3"; + name = "kdepim-runtime-16.04.0.tar.xz"; + }; + }; + kde-runtime = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kde-runtime-16.04.0.tar.xz"; + sha256 = "0sr06v4z6lbkacqgk8a35m3ldal1fcpvp6n2s8bfa226yck8sdq6"; + name = "kde-runtime-16.04.0.tar.xz"; + }; + }; + kdesdk-kioslaves = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdesdk-kioslaves-16.04.0.tar.xz"; + sha256 = "0lwdy4l48id0p3vkpk92n3ja6ymzxx9zl7iwwszb1rxbr48q4v7l"; + name = "kdesdk-kioslaves-16.04.0.tar.xz"; + }; + }; + kdesdk-strigi-analyzers = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdesdk-strigi-analyzers-16.04.0.tar.xz"; + sha256 = "1bn12pqqq9bgr6y916wd54i0dsw30ab9xhz99mqyjw2fcxpz4mf8"; + name = "kdesdk-strigi-analyzers-16.04.0.tar.xz"; + }; + }; + kdesdk-thumbnailers = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdesdk-thumbnailers-16.04.0.tar.xz"; + sha256 = "1wqlrkgix2nnpvlqqqdja4j5iws4vjglds94ra5s0wmyfk0y9yc2"; + name = "kdesdk-thumbnailers-16.04.0.tar.xz"; + }; + }; + kdewebdev = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdewebdev-16.04.0.tar.xz"; + sha256 = "1xmibm0hi0mdwsvp8h48qph4mjwb1k3q58i9y8s1c7vqczl1q09n"; + name = "kdewebdev-16.04.0.tar.xz"; + }; + }; + kdf = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdf-16.04.0.tar.xz"; + sha256 = "12bcvy6x8wkizjykrc3wmd3lbsj2zmiizxknic5jiwin6zqjrzh4"; + name = "kdf-16.04.0.tar.xz"; + }; + }; + kdgantt2 = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdgantt2-16.04.0.tar.xz"; + sha256 = "0j9b2f5zkvasv5w4paazyc47iph27nqd4l4nrwr3plvdirivdidf"; + name = "kdgantt2-16.04.0.tar.xz"; + }; + }; + kdiamond = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kdiamond-16.04.0.tar.xz"; + sha256 = "1alb6hv95whdy15kmc0kzx4758wjni6q2k3dxxpdhw0hq657v508"; + name = "kdiamond-16.04.0.tar.xz"; + }; + }; + kfloppy = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kfloppy-16.04.0.tar.xz"; + sha256 = "09jwqbfs0ayswlzih90bq439c8ljhay12jfv73gdnkvf23qiq5vw"; + name = "kfloppy-16.04.0.tar.xz"; + }; + }; + kfourinline = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kfourinline-16.04.0.tar.xz"; + sha256 = "13hgwn3gzyhvh4xw7ym80vsbnqbvhlvn3jwzjrxlj377q9q1h6i6"; + name = "kfourinline-16.04.0.tar.xz"; + }; + }; + kgeography = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kgeography-16.04.0.tar.xz"; + sha256 = "1pk76akkd5ykh9p1l757cqj8niwwavxdxwinkz51w0dz0n62zb4x"; + name = "kgeography-16.04.0.tar.xz"; + }; + }; + kget = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kget-16.04.0.tar.xz"; + sha256 = "17z2n0bgj1dm4d4abprnx8crw30flxxk95w8sv3483zqbk0k3p4i"; + name = "kget-16.04.0.tar.xz"; + }; + }; + kgoldrunner = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kgoldrunner-16.04.0.tar.xz"; + sha256 = "019dk1nq1jmk7w3lklxlsy667m7vahspjd0w5rrpas54czl975w8"; + name = "kgoldrunner-16.04.0.tar.xz"; + }; + }; + kgpg = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kgpg-16.04.0.tar.xz"; + sha256 = "0qrijbwnrg61kwmv7l5k6796lbr9ry4grmk9jc38cq2g7bi64wz2"; + name = "kgpg-16.04.0.tar.xz"; + }; + }; + khangman = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/khangman-16.04.0.tar.xz"; + sha256 = "0ljrap9ybccmwymkay7760rgmpp51cssnvn4lwmd3mig5cfqlavs"; + name = "khangman-16.04.0.tar.xz"; + }; + }; + khelpcenter = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/khelpcenter-16.04.0.tar.xz"; + sha256 = "1r6aysdnc0qdg9lbzy1zb6pirfyfah3sbjsqkmrnf63kqsyjvapy"; + name = "khelpcenter-16.04.0.tar.xz"; + }; + }; + kholidays = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kholidays-16.04.0.tar.xz"; + sha256 = "04gfy3f5fip79ra08m3f098cbgp0k7v76lam3513r0zvl0h53gad"; + name = "kholidays-16.04.0.tar.xz"; + }; + }; + kidentitymanagement = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kidentitymanagement-16.04.0.tar.xz"; + sha256 = "0dhpjgmz7ndbk77syp1zvk5g7sn991wjx5cllk6dx0q9ylfl1895"; + name = "kidentitymanagement-16.04.0.tar.xz"; + }; + }; + kig = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kig-16.04.0.tar.xz"; + sha256 = "0rlx7cm41z8zm4v4rdwmwicam2g2ibd0gmzlsnh77s4cv8xhmd7y"; + name = "kig-16.04.0.tar.xz"; + }; + }; + kigo = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kigo-16.04.0.tar.xz"; + sha256 = "1cw8hyhayn650j73kqr8aqzj6wd6bq21l5c4ibl2qm90p1byj6zz"; + name = "kigo-16.04.0.tar.xz"; + }; + }; + killbots = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/killbots-16.04.0.tar.xz"; + sha256 = "1qnrwj1shy7ah2x0nh03r0zf3h8535qxxg62wgyg675n80ndl6wh"; + name = "killbots-16.04.0.tar.xz"; + }; + }; + kimap = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kimap-16.04.0.tar.xz"; + sha256 = "028xpqdxgylab6sznzxdd7pyfm7l27mzj13zzxhd7lc7fqd3xgx9"; + name = "kimap-16.04.0.tar.xz"; + }; + }; + kio-extras = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kio-extras-16.04.0.tar.xz"; + sha256 = "0iims3vk5mqz8lnpimwc3kjlvkmfh10287zy4sm5p8kxxfgz88fj"; + name = "kio-extras-16.04.0.tar.xz"; + }; + }; + kiriki = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kiriki-16.04.0.tar.xz"; + sha256 = "0bywgx8j1kx5x5j4h5bv8zrf73pkdzd96wharrgia0x55kmnzgn2"; + name = "kiriki-16.04.0.tar.xz"; + }; + }; + kiten = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kiten-16.04.0.tar.xz"; + sha256 = "12d0p468439llj5jyxyd7qhr2zavdkbl8s87qcfhw7lngsnssq34"; + name = "kiten-16.04.0.tar.xz"; + }; + }; + kjumpingcube = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kjumpingcube-16.04.0.tar.xz"; + sha256 = "1grrcfblnfr2p6a72n38r6awkfm662brnv1r2k4kqbiz0qmwmvyd"; + name = "kjumpingcube-16.04.0.tar.xz"; + }; + }; + kldap = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kldap-16.04.0.tar.xz"; + sha256 = "1gbm7rgf2llxdnckzlnsjii9jd8s59hym96hf9v87svbphbm1738"; + name = "kldap-16.04.0.tar.xz"; + }; + }; + kleopatra = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kleopatra-16.04.0.tar.xz"; + sha256 = "0rmzsqvp0xwyjr25d2vnslgg6cvni9km8hkijyhz8zrmnmpdm97z"; + name = "kleopatra-16.04.0.tar.xz"; + }; + }; + klettres = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/klettres-16.04.0.tar.xz"; + sha256 = "17m30hkjjrk5h4a5z1c96sgl8i0729537q11v9ndj8kh1699sfxs"; + name = "klettres-16.04.0.tar.xz"; + }; + }; + klickety = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/klickety-16.04.0.tar.xz"; + sha256 = "0ggj585vki81ds94k9i7b1sawzxz24k582zm5d3lngipcb1x808l"; + name = "klickety-16.04.0.tar.xz"; + }; + }; + klines = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/klines-16.04.0.tar.xz"; + sha256 = "1000j5n9hzr3ffpi7mj5aicflr5gvbbd02s4l2qy9ghgxf5ghfzw"; + name = "klines-16.04.0.tar.xz"; + }; + }; + kmag = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmag-16.04.0.tar.xz"; + sha256 = "0z9jrd9a9xmxsbk6xckiqvidd6f9dcj1lfav818fm1wf5jr04v40"; + name = "kmag-16.04.0.tar.xz"; + }; + }; + kmahjongg = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmahjongg-16.04.0.tar.xz"; + sha256 = "0wl7mv20zal3nx3y1cdc8xq0vhkvb8rb8sag8kb66a1ch8zdzw9s"; + name = "kmahjongg-16.04.0.tar.xz"; + }; + }; + kmailtransport = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmailtransport-16.04.0.tar.xz"; + sha256 = "0imw47nlfnd1qq2c91ig7cmwrcm1c9jcqfxvi1svllbwy9bgab3i"; + name = "kmailtransport-16.04.0.tar.xz"; + }; + }; + kmbox = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmbox-16.04.0.tar.xz"; + sha256 = "1w2y6nda7p5wfl76rmirpglgar8qxhyynx66k5qnvfpvk8xa02wk"; + name = "kmbox-16.04.0.tar.xz"; + }; + }; + kmime = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmime-16.04.0.tar.xz"; + sha256 = "04hqdl1kbqv3xm0qvdsrvjs1fnsymqfw2yn286rh7ynlix4p09zz"; + name = "kmime-16.04.0.tar.xz"; + }; + }; + kmines = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmines-16.04.0.tar.xz"; + sha256 = "0q8jqycwsjadi10a1ycxn09507j85lh0zwxq1b374cdb01m7ajzw"; + name = "kmines-16.04.0.tar.xz"; + }; + }; + kmix = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmix-16.04.0.tar.xz"; + sha256 = "0nmfjrxdxpkvxrsp06w6ddcyhfasmzvn8hk44n4wd9v86vgi29cz"; + name = "kmix-16.04.0.tar.xz"; + }; + }; + kmousetool = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmousetool-16.04.0.tar.xz"; + sha256 = "1g2lgmimkq9yb8s1lypwh4cz5zxih4fppcqcjlgwcpg0n4ia2hh7"; + name = "kmousetool-16.04.0.tar.xz"; + }; + }; + kmouth = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmouth-16.04.0.tar.xz"; + sha256 = "0bqqjs2khdhqgd3apk7bd8sayb9dg6mwc8f211z7zb03xvgb95nd"; + name = "kmouth-16.04.0.tar.xz"; + }; + }; + kmplot = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kmplot-16.04.0.tar.xz"; + sha256 = "1q76bl3604qcp67w754qsncsg0mw5vm9c5jp8hj6i9vksdl8i3n8"; + name = "kmplot-16.04.0.tar.xz"; + }; + }; + knavalbattle = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/knavalbattle-16.04.0.tar.xz"; + sha256 = "0q0k37dvw8pajxcmsv25if726ml9mzdm6am2q22x64hblsgmva0h"; + name = "knavalbattle-16.04.0.tar.xz"; + }; + }; + knetwalk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/knetwalk-16.04.0.tar.xz"; + sha256 = "0i00lnw31jb7lb18r6r8k4k61syjak7pglwxwbah96wxrrmdnvpk"; + name = "knetwalk-16.04.0.tar.xz"; + }; + }; + kolf = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kolf-16.04.0.tar.xz"; + sha256 = "1b0247wpnzm9lz82d5v3wv28cacj3b7r5rirdg8plri5y2gks8ql"; + name = "kolf-16.04.0.tar.xz"; + }; + }; + kollision = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kollision-16.04.0.tar.xz"; + sha256 = "1hmgw5410xznjddv1x2jg6v1rv6hkksr281ylhdb2ca8zh2wdwqi"; + name = "kollision-16.04.0.tar.xz"; + }; + }; + kolourpaint = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kolourpaint-16.04.0.tar.xz"; + sha256 = "13x7r8k60q0nnip37xadqdypm88c2zrfk2nhlllhqb41d23hbbsw"; + name = "kolourpaint-16.04.0.tar.xz"; + }; + }; + kompare = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kompare-16.04.0.tar.xz"; + sha256 = "1yd06ykjbi5kvas9vrnhy9svpsvlk4y8xvs963vvi0jdw7x5ylzj"; + name = "kompare-16.04.0.tar.xz"; + }; + }; + konquest = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/konquest-16.04.0.tar.xz"; + sha256 = "198s495slqi7fffmsnn6pj90mi51bjw3grkr033l4z0lmxhqljmb"; + name = "konquest-16.04.0.tar.xz"; + }; + }; + konsole = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/konsole-16.04.0.tar.xz"; + sha256 = "06c3d01h658g00yi4vhc8rk6ndxs4ha0pj6y0w4d10g78zcnjmd4"; + name = "konsole-16.04.0.tar.xz"; + }; + }; + kontactinterface = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kontactinterface-16.04.0.tar.xz"; + sha256 = "1plhya2xpvvsx2japbiq8v5a2c1rbw77jf3q278kqwracrkgsiax"; + name = "kontactinterface-16.04.0.tar.xz"; + }; + }; + kopete = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kopete-16.04.0.tar.xz"; + sha256 = "1xcaz0f6cmjxy7sifxhlm7jvndj238azx59xg4glrk4mhrnac5m7"; + name = "kopete-16.04.0.tar.xz"; + }; + }; + kpat = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kpat-16.04.0.tar.xz"; + sha256 = "06xsisy0sv8rldpc2fw3hc4dr66wmxbw006x3p9gi1xxwqlp8j3w"; + name = "kpat-16.04.0.tar.xz"; + }; + }; + kpimtextedit = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kpimtextedit-16.04.0.tar.xz"; + sha256 = "0wkxqqyifvgd1h2i2q3958diwybff8m2wc7g9grl6wagj0rbr6y8"; + name = "kpimtextedit-16.04.0.tar.xz"; + }; + }; + kppp = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kppp-16.04.0.tar.xz"; + sha256 = "0z53n7cppr79z7k8siaadrspl1134gw5a7wx02jigl0kihm9sykf"; + name = "kppp-16.04.0.tar.xz"; + }; + }; + kqtquickcharts = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kqtquickcharts-16.04.0.tar.xz"; + sha256 = "12x3mgxba4bfi7imli22a8m3af3hkq3fkx192ij3wx8ils7b6in7"; + name = "kqtquickcharts-16.04.0.tar.xz"; + }; + }; + krdc = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/krdc-16.04.0.tar.xz"; + sha256 = "0azlvqai97ki33dc448zw76hqbsqzd6a5k7gj9fsj8pg11m06kn4"; + name = "krdc-16.04.0.tar.xz"; + }; + }; + kremotecontrol = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kremotecontrol-16.04.0.tar.xz"; + sha256 = "027ljqfxl9gsn6q5rld0azqzg3a1ky96045i809dzhdwknrz014a"; + name = "kremotecontrol-16.04.0.tar.xz"; + }; + }; + kreversi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kreversi-16.04.0.tar.xz"; + sha256 = "193vj6qdshh0k7jn7ca63yfkb99sbb0xn3fhyd65iimwcyziz6yj"; + name = "kreversi-16.04.0.tar.xz"; + }; + }; + krfb = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/krfb-16.04.0.tar.xz"; + sha256 = "1xcnvs9l2w5awfkxzq2yi0chpljip8nkc3zqlzlqnchkzpxy568j"; + name = "krfb-16.04.0.tar.xz"; + }; + }; + kross-interpreters = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kross-interpreters-16.04.0.tar.xz"; + sha256 = "18sc600x5yki1rngxa9ng6zrw5yam824sf05filwa6m22kxi91y8"; + name = "kross-interpreters-16.04.0.tar.xz"; + }; + }; + kruler = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kruler-16.04.0.tar.xz"; + sha256 = "07p85apr7rvgwphnd7vwpmyn8i26m1px4ssq54wk9kindxcs2awg"; + name = "kruler-16.04.0.tar.xz"; + }; + }; + ksaneplugin = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksaneplugin-16.04.0.tar.xz"; + sha256 = "0ldgj3pna0y7ayyw8nz2ybj8g6i1i7axd96sgpgx11708jqphy91"; + name = "ksaneplugin-16.04.0.tar.xz"; + }; + }; + kscd = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kscd-16.04.0.tar.xz"; + sha256 = "0k1dxi6gimy41d8mjcb371fkv8z64cdjhyisdgsyfqq6klhy93ss"; + name = "kscd-16.04.0.tar.xz"; + }; + }; + kshisen = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kshisen-16.04.0.tar.xz"; + sha256 = "1k75l3y89hv0gs08kfczb1avy5i5h964xf4b976hslzhpvwi8w1q"; + name = "kshisen-16.04.0.tar.xz"; + }; + }; + ksirk = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksirk-16.04.0.tar.xz"; + sha256 = "0hswi5f0r10yjm9rdiffaw96d5wwjwcnv2g07hh7lc1w6irmq7v7"; + name = "ksirk-16.04.0.tar.xz"; + }; + }; + ksnakeduel = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksnakeduel-16.04.0.tar.xz"; + sha256 = "1666k9q065xrij07fbwv1b1xa23p02qk3b366cfhd38kf1shp9fg"; + name = "ksnakeduel-16.04.0.tar.xz"; + }; + }; + kspaceduel = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kspaceduel-16.04.0.tar.xz"; + sha256 = "03jqb8yn5jgdc9pd92bpbkvr8vwr91cpvmzgmmrqi4llj3cjpp9x"; + name = "kspaceduel-16.04.0.tar.xz"; + }; + }; + ksquares = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksquares-16.04.0.tar.xz"; + sha256 = "11fqvpkghvy54zrvyvwk9kasx3i1clw8rj4bjphif2nr6sc5wdi7"; + name = "ksquares-16.04.0.tar.xz"; + }; + }; + kstars = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kstars-16.04.0.tar.xz"; + sha256 = "0h648mnp6l5msv56pmwrm5197hdx20jmw2wzdflx09lj3iir6d1y"; + name = "kstars-16.04.0.tar.xz"; + }; + }; + ksudoku = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksudoku-16.04.0.tar.xz"; + sha256 = "1d6mwhcsa09yrrd43a842xzyf87hpqwlhp1x82f9kx31hkq1hs6m"; + name = "ksudoku-16.04.0.tar.xz"; + }; + }; + ksystemlog = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ksystemlog-16.04.0.tar.xz"; + sha256 = "0qcycfyj1wk730hcnzjn75wf6vcxd6svmvqz6q3q85rrjjs3am6s"; + name = "ksystemlog-16.04.0.tar.xz"; + }; + }; + kteatime = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kteatime-16.04.0.tar.xz"; + sha256 = "0yhldn2d2kz0kf5s1s8wkmmg73v620mf2h5prf59hqygkdzmxq1n"; + name = "kteatime-16.04.0.tar.xz"; + }; + }; + ktimer = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktimer-16.04.0.tar.xz"; + sha256 = "0p925v4h944vsp8br581wdlnfvp51yq92kf8xfsgc8d7r85h28w4"; + name = "ktimer-16.04.0.tar.xz"; + }; + }; + ktnef = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktnef-16.04.0.tar.xz"; + sha256 = "1n1hi22l1cgjq989dhglm1m47f8bg3zdpsyh506qa3j7fg2y3rs6"; + name = "ktnef-16.04.0.tar.xz"; + }; + }; + ktouch = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktouch-16.04.0.tar.xz"; + sha256 = "19n33p2yirxh21i7ij2bncqksz1i2k57c2cwrzzq40a3b9dndimc"; + name = "ktouch-16.04.0.tar.xz"; + }; + }; + ktp-accounts-kcm = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-accounts-kcm-16.04.0.tar.xz"; + sha256 = "1mr7f481dcgg3gyyzycs92n7s2ap5kyv7xy2dmf7rypz1xkp2sya"; + name = "ktp-accounts-kcm-16.04.0.tar.xz"; + }; + }; + ktp-approver = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-approver-16.04.0.tar.xz"; + sha256 = "1mqbvb797mms4mwk5v5xkh2z67fkh1ayhkjq0hgj0wi3a2x65zx8"; + name = "ktp-approver-16.04.0.tar.xz"; + }; + }; + ktp-auth-handler = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-auth-handler-16.04.0.tar.xz"; + sha256 = "1l7rlqiaaffcdpplznkbhhrn41q7f1vx4ripjizj0q8a62fivbr6"; + name = "ktp-auth-handler-16.04.0.tar.xz"; + }; + }; + ktp-call-ui = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-call-ui-16.04.0.tar.xz"; + sha256 = "0ndknp2c3qyd894cavxbp7kfc8rxgz7pcd3gvsrwdgk31k4jajyx"; + name = "ktp-call-ui-16.04.0.tar.xz"; + }; + }; + ktp-common-internals = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-common-internals-16.04.0.tar.xz"; + sha256 = "1q0bwnsna9h7lj8pva1kzmn8qnlgyynbvldgcr85g713jr2lnmr8"; + name = "ktp-common-internals-16.04.0.tar.xz"; + }; + }; + ktp-contact-list = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-contact-list-16.04.0.tar.xz"; + sha256 = "07ffzrzm5y8kgz6cxjsj8kkgsnvprrjkl4ck8y0san47gk2p5rb7"; + name = "ktp-contact-list-16.04.0.tar.xz"; + }; + }; + ktp-contact-runner = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-contact-runner-16.04.0.tar.xz"; + sha256 = "0rcpci13hz9xdc51p364rvyi50vkjjgmf74wkwmaxc57sclf5bwi"; + name = "ktp-contact-runner-16.04.0.tar.xz"; + }; + }; + ktp-desktop-applets = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-desktop-applets-16.04.0.tar.xz"; + sha256 = "01w3cdbrii14211wgn9vl3l108za5bw22f39pyznf1bqjimdz4nh"; + name = "ktp-desktop-applets-16.04.0.tar.xz"; + }; + }; + ktp-filetransfer-handler = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-filetransfer-handler-16.04.0.tar.xz"; + sha256 = "1sf7xg317dgcdvnj2j9hq63633d6iyl7rgn22xryawpq2iw3wz9n"; + name = "ktp-filetransfer-handler-16.04.0.tar.xz"; + }; + }; + ktp-kded-module = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-kded-module-16.04.0.tar.xz"; + sha256 = "13zsgzipmkn15h83ziwa3wg1dcin4lqawmhapkhlf4xxs8wm1mb6"; + name = "ktp-kded-module-16.04.0.tar.xz"; + }; + }; + ktp-send-file = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-send-file-16.04.0.tar.xz"; + sha256 = "0sdwrj644n80xnx8syycpiwwn432ww2i3vvx1v6sj696gcrkv7i4"; + name = "ktp-send-file-16.04.0.tar.xz"; + }; + }; + ktp-text-ui = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktp-text-ui-16.04.0.tar.xz"; + sha256 = "1pgz1hzrkmx6k88cghgacgjykmkbjvvm1hhyr377hgvdhrfc6scy"; + name = "ktp-text-ui-16.04.0.tar.xz"; + }; + }; + ktuberling = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/ktuberling-16.04.0.tar.xz"; + sha256 = "1w7qv0iacjhr9yphm3kxxiwh2c17x6ky4i2yzb178nb5sh6dgdig"; + name = "ktuberling-16.04.0.tar.xz"; + }; + }; + kturtle = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kturtle-16.04.0.tar.xz"; + sha256 = "1as62h92dx4f1n1fb1lhsyvx90msl2392b595hfsgkhgqb4spn3y"; + name = "kturtle-16.04.0.tar.xz"; + }; + }; + kubrick = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kubrick-16.04.0.tar.xz"; + sha256 = "1vvh3yzpcri1yyc3z4djkr8sjs03pbrwinrz0f4iwah8diyrdpy0"; + name = "kubrick-16.04.0.tar.xz"; + }; + }; + kuser = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kuser-16.04.0.tar.xz"; + sha256 = "11fradjslci2znglh24wcljhpld4zp206r0wrp392hjc4i6ck069"; + name = "kuser-16.04.0.tar.xz"; + }; + }; + kwalletmanager = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kwalletmanager-16.04.0.tar.xz"; + sha256 = "1wqdhwvkxky0c4lnm9b3akjvb2ydx3qx3hr08959za7kkk976nmb"; + name = "kwalletmanager-16.04.0.tar.xz"; + }; + }; + kwordquiz = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/kwordquiz-16.04.0.tar.xz"; + sha256 = "0yk95l6gl57hs62l8xvi9xfrzmkcch0v3ijasqhg20i4w33309z0"; + name = "kwordquiz-16.04.0.tar.xz"; + }; + }; + libgravatar = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libgravatar-16.04.0.tar.xz"; + sha256 = "0kbvy90r5x1s1s3h680cqiqj221gicvy8j0pwid5vr2pxjkdih0l"; + name = "libgravatar-16.04.0.tar.xz"; + }; + }; + libkcddb = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkcddb-16.04.0.tar.xz"; + sha256 = "1wylsqij5l3w4pvw3g2jkypqpn3a8fg72x7q5dp22l0n9ihrhn8j"; + name = "libkcddb-16.04.0.tar.xz"; + }; + }; + libkcompactdisc = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkcompactdisc-16.04.0.tar.xz"; + sha256 = "0zf3bry65jak3z4kjhnszjy05h4pvnzzz7nh954cmigv369iwsz8"; + name = "libkcompactdisc-16.04.0.tar.xz"; + }; + }; + libkdcraw = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkdcraw-16.04.0.tar.xz"; + sha256 = "0l6aa2458apxbz1hm300w3s32ywxjhy80vnm3sxnk3313ba38cml"; + name = "libkdcraw-16.04.0.tar.xz"; + }; + }; + libkdeedu = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkdeedu-16.04.0.tar.xz"; + sha256 = "16aabzc57qjjzmfmsnb4rjw28w4014l66dsy528rfj5i0wyw40vy"; + name = "libkdeedu-16.04.0.tar.xz"; + }; + }; + libkdegames = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkdegames-16.04.0.tar.xz"; + sha256 = "0nr3z1plcinx0hw9q1gac32czgy6079q36v57qk76l6531cssk73"; + name = "libkdegames-16.04.0.tar.xz"; + }; + }; + libkdepim = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkdepim-16.04.0.tar.xz"; + sha256 = "0197r1hdx6cpakmvcp1195bm1vn71y8sprbx23n4m9ak92ak9z6x"; + name = "libkdepim-16.04.0.tar.xz"; + }; + }; + libkeduvocdocument = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkeduvocdocument-16.04.0.tar.xz"; + sha256 = "0j92kjhj143z4g9702ir4xs0hdpkk74ydi9347cvb1vh8mq7wqn0"; + name = "libkeduvocdocument-16.04.0.tar.xz"; + }; + }; + libkexiv2 = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkexiv2-16.04.0.tar.xz"; + sha256 = "1n3bhzlw729vka1lc00sw75m7cfg5ibqh2lliv6lv9g9aqb7xk0z"; + name = "libkexiv2-16.04.0.tar.xz"; + }; + }; + libkface = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkface-16.04.0.tar.xz"; + sha256 = "1vykpj8yws1sd4x3zcpjlrlq9ygybia4wi34qcakx5016fym2qxb"; + name = "libkface-16.04.0.tar.xz"; + }; + }; + libkgeomap = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkgeomap-16.04.0.tar.xz"; + sha256 = "0kl2wzxmy25398amk3631vql0vh66vd2j9qdxzjb9lvlw7gvn55s"; + name = "libkgeomap-16.04.0.tar.xz"; + }; + }; + libkipi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkipi-16.04.0.tar.xz"; + sha256 = "0ffa57f1p86sdqq1spf5bvzh2vfa9wfhm8lrhs6mfrr0nr65v85x"; + name = "libkipi-16.04.0.tar.xz"; + }; + }; + libkleo = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkleo-16.04.0.tar.xz"; + sha256 = "0yw36vxscwh10bnn20lbas06j1pcwdgd08qhd8hfdl9yajg9jg0w"; + name = "libkleo-16.04.0.tar.xz"; + }; + }; + libkmahjongg = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkmahjongg-16.04.0.tar.xz"; + sha256 = "08vh9mpxy4i9lnd8a57i443lr77b5am50w4xnpssi0jfy0jjsxkr"; + name = "libkmahjongg-16.04.0.tar.xz"; + }; + }; + libkomparediff2 = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libkomparediff2-16.04.0.tar.xz"; + sha256 = "137p3c07f7ni5khwbnb9fm9i8vprn0y0wzqmlfa2rhc78bn0czsl"; + name = "libkomparediff2-16.04.0.tar.xz"; + }; + }; + libksane = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libksane-16.04.0.tar.xz"; + sha256 = "07944vywdm13swqh5psw6jv36f6hdxqhrb718wicjlr57lbg65mb"; + name = "libksane-16.04.0.tar.xz"; + }; + }; + libksieve = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/libksieve-16.04.0.tar.xz"; + sha256 = "15gwg02sand97khvdl22zhqq734n4xdbndldzla0jh2jxixa2ihn"; + name = "libksieve-16.04.0.tar.xz"; + }; + }; + lokalize = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/lokalize-16.04.0.tar.xz"; + sha256 = "1r77pmy2dxnbxh1dgcmrpz2d6kpnj6z31yan1lkr8wf0fgh7355i"; + name = "lokalize-16.04.0.tar.xz"; + }; + }; + lskat = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/lskat-16.04.0.tar.xz"; + sha256 = "1px4wv9kxqqvrdmk9v4bw212mdjwl0v7qbh8mmyq8j06axf3a6jm"; + name = "lskat-16.04.0.tar.xz"; + }; + }; + mailcommon = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/mailcommon-16.04.0.tar.xz"; + sha256 = "0s62kzjas1zs9cm06lfk37d3nx4h0h0m75i3wlj87spd7hg8p2i1"; + name = "mailcommon-16.04.0.tar.xz"; + }; + }; + mailimporter = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/mailimporter-16.04.0.tar.xz"; + sha256 = "0ij07frw0bf3h8hlkdacdv8a2czsaipkjqwlscbsl5vcplfxpsxv"; + name = "mailimporter-16.04.0.tar.xz"; + }; + }; + marble = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/marble-16.04.0.tar.xz"; + sha256 = "05idh1011njasxr24r2cd16i07720af1qqvba3anfx20nav1sxgr"; + name = "marble-16.04.0.tar.xz"; + }; + }; + messagelib = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/messagelib-16.04.0.tar.xz"; + sha256 = "0zh4fxs33yvvn9wgfs47d016bhzss1mr7qjyq023mrlmsl7jnpr8"; + name = "messagelib-16.04.0.tar.xz"; + }; + }; + minuet = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/minuet-16.04.0.tar.xz"; + sha256 = "0jyrl2rxl1dllv2d99vrga7jn3dqqkrkvhg3bv7a80w766j9hq8g"; + name = "minuet-16.04.0.tar.xz"; + }; + }; + mplayerthumbs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/mplayerthumbs-16.04.0.tar.xz"; + sha256 = "0mkgnxli1pysrzqbcxky6hsmcvjww7zly82ya2p4nsjr71g8laid"; + name = "mplayerthumbs-16.04.0.tar.xz"; + }; + }; + okteta = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/okteta-16.04.0.tar.xz"; + sha256 = "01p4sqd1j75nyg3aax15b5z3dnppnzc27ci61yzsa3jhd0470n3c"; + name = "okteta-16.04.0.tar.xz"; + }; + }; + okular = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/okular-16.04.0.tar.xz"; + sha256 = "0dn9vm22hc30v1fhly52fmbvjd6my2zxvl08f44jwimbh7wh9rw0"; + name = "okular-16.04.0.tar.xz"; + }; + }; + palapeli = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/palapeli-16.04.0.tar.xz"; + sha256 = "1yrph8a07jm69cg5gj0rgc4mgqfvqg024wald724yyydbcx5i8br"; + name = "palapeli-16.04.0.tar.xz"; + }; + }; + parley = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/parley-16.04.0.tar.xz"; + sha256 = "17lwb2vy36hrpgz3f9hrfikp7kz36xq013ym4cijh26xysha2gsx"; + name = "parley-16.04.0.tar.xz"; + }; + }; + picmi = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/picmi-16.04.0.tar.xz"; + sha256 = "0w2x9c0bd26b34ckmyzcfn980kbsq0y5zw3kfw3dsh5q8n0c627f"; + name = "picmi-16.04.0.tar.xz"; + }; + }; + pimcommon = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/pimcommon-16.04.0.tar.xz"; + sha256 = "0c0xkg2vd5jps0nfy661z2np17gygpyvkdc6cp5ir41b5sk2fz4h"; + name = "pimcommon-16.04.0.tar.xz"; + }; + }; + poxml = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/poxml-16.04.0.tar.xz"; + sha256 = "1zwg7b4j5ijs9sry8hl7fnnli8hsw3gy685cdgpairgj46yyryx8"; + name = "poxml-16.04.0.tar.xz"; + }; + }; + print-manager = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/print-manager-16.04.0.tar.xz"; + sha256 = "1kl68fz52zjwfs9kprihar0i6n6sg6s40slblfhvi60s1g5krf4m"; + name = "print-manager-16.04.0.tar.xz"; + }; + }; + rocs = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/rocs-16.04.0.tar.xz"; + sha256 = "05wc9b93csf7bsbmy99jcnml7n0mgfql1rvrs3z8jcz17jnfcx9s"; + name = "rocs-16.04.0.tar.xz"; + }; + }; + signon-kwallet-extension = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/signon-kwallet-extension-16.04.0.tar.xz"; + sha256 = "0a36gklixkkwgnhs3w3z3l14p6x6r0xgzcqw344g36v1x3imvspf"; + name = "signon-kwallet-extension-16.04.0.tar.xz"; + }; + }; + spectacle = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/spectacle-16.04.0.tar.xz"; + sha256 = "0c0qmgjd32iam0zd4n08kmajfqpfsa0zphxvgq2rh7plxw3npfga"; + name = "spectacle-16.04.0.tar.xz"; + }; + }; + step = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/step-16.04.0.tar.xz"; + sha256 = "18imzm9v2gbf64f3p08a3l7r7axyjsmi2xvbqvg0ir2ly3pabrx0"; + name = "step-16.04.0.tar.xz"; + }; + }; + svgpart = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/svgpart-16.04.0.tar.xz"; + sha256 = "11793djb9v499b11kwr1312p9j9hhrjk7i67035s64lblrnbb9yw"; + name = "svgpart-16.04.0.tar.xz"; + }; + }; + sweeper = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/sweeper-16.04.0.tar.xz"; + sha256 = "0hahwmiziiwraahssxzsxfzvyli4lmj7fdskqnv9q7b39hai88j7"; + name = "sweeper-16.04.0.tar.xz"; + }; + }; + syndication = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/syndication-16.04.0.tar.xz"; + sha256 = "0m8dacbqdg9vya2c8gknckx8xjp6m9s93vxd4j6a78jz28j6yvcc"; + name = "syndication-16.04.0.tar.xz"; + }; + }; + umbrello = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/umbrello-16.04.0.tar.xz"; + sha256 = "11b7a7bg9v2gdl4hjpfz06k5ks2v36ai70iri6rcp0lw9bcspig2"; + name = "umbrello-16.04.0.tar.xz"; + }; + }; + zeroconf-ioslave = { + version = "16.04.0"; + src = fetchurl { + url = "${mirror}/stable/applications/16.04.0/src/zeroconf-ioslave-16.04.0.tar.xz"; + sha256 = "0ablccfi3kq18rcx79jwn9z317qyflb05ck9kalqpr7f8xnmhzn3"; + name = "zeroconf-ioslave-16.04.0.tar.xz"; + }; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6dfd259aab9d6..81fe6bc5f96a6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15593,7 +15593,7 @@ in let frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.5 { inherit pkgs; }; - applications = import ../desktops/kde-5/applications-15.12 { inherit pkgs; }; + applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; frameworks = frameworks self; -- cgit 1.4.1 From c7f0701c872944eb2c46701c316e000fc30a6dfc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 11:01:22 -0500 Subject: kde5_latest.plasma: 5.5.5 -> 5.6.3 --- pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix | 26 ++ pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix | 8 + pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix | 29 ++ pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix | 23 ++ pkgs/desktops/kde-5/plasma-5.6/default.nix | 88 +++++ pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh | 57 ++++ pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix | 27 ++ .../kde-gtk-config/0001-follow-symlinks.patch | 39 +++ .../kde-5/plasma-5.6/kde-gtk-config/default.nix | 28 ++ pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix | 6 + .../desktops/kde-5/plasma-5.6/kdeplasma-addons.nix | 21 ++ pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix | 9 + pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix | 20 ++ pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix | 16 + pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix | 24 ++ pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix | 19 ++ pkgs/desktops/kde-5/plasma-5.6/kscreen.nix | 29 ++ pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix | 19 ++ pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix | 13 + pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix | 20 ++ pkgs/desktops/kde-5/plasma-5.6/kwayland.nix | 14 + .../kwin/0001-qdiriterator-follow-symlinks.patch | 25 ++ pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix | 34 ++ pkgs/desktops/kde-5/plasma-5.6/kwrited.nix | 10 + .../kde-5/plasma-5.6/libkscreen/default.nix | 18 + .../0001-qdiriterator-follow-symlinks.patch | 25 ++ .../kde-5/plasma-5.6/libksysguard/default.nix | 28 ++ pkgs/desktops/kde-5/plasma-5.6/milou.nix | 17 + pkgs/desktops/kde-5/plasma-5.6/oxygen.nix | 20 ++ .../0001-qt-5.5-QML-import-paths.patch | 67 ++++ .../plasma-5.6/plasma-desktop/0002-hwclock.patch | 36 ++ .../plasma-5.6/plasma-desktop/0003-tzdir.patch | 30 ++ .../kde-5/plasma-5.6/plasma-desktop/default.nix | 86 +++++ .../kde-5/plasma-5.6/plasma-mediacenter.nix | 20 ++ .../0001-mobile-broadband-provider-info-path.patch | 25 ++ .../kde-5/plasma-5.6/plasma-nm/default.nix | 36 ++ pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix | 18 + .../plasma-5.6/plasma-workspace-wallpapers.nix | 10 + .../kde-5/plasma-5.6/plasma-workspace/default.nix | 45 +++ .../plasma-workspace/qml-import-path.patch | 104 ++++++ .../kde-5/plasma-5.6/plasma-workspace/series | 1 + .../plasma-5.6/plasma-workspace/startkde.patch | 372 +++++++++++++++++++++ .../desktops/kde-5/plasma-5.6/polkit-kde-agent.nix | 31 ++ pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix | 20 ++ pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh | 1 + pkgs/desktops/kde-5/plasma-5.6/srcs.nix | 341 +++++++++++++++++++ .../desktops/kde-5/plasma-5.6/startkde/default.nix | 32 ++ .../desktops/kde-5/plasma-5.6/startkde/startkde.sh | 334 ++++++++++++++++++ pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix | 21 ++ pkgs/top-level/all-packages.nix | 2 +- 50 files changed, 2343 insertions(+), 1 deletion(-) create mode 100644 pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/default.nix create mode 100755 pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kscreen.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kwayland.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kwrited.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/milou.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/oxygen.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh create mode 100644 pkgs/desktops/kde-5/plasma-5.6/srcs.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix create mode 100755 pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh create mode 100644 pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix new file mode 100644 index 0000000000000..6596c246202f0 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix @@ -0,0 +1,26 @@ +{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons +, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications +, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework +, qtdeclarative, shared_mime_info +}: + +plasmaPackage { + name = "bluedevil"; + nativeBuildInputs = [ + extra-cmake-modules makeQtWrapper shared_mime_info + ]; + buildInputs = [ + kcoreaddons kdbusaddons kded kiconthemes knotifications + kwidgetsaddons + ]; + propagatedBuildInputs = [ + bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative + ]; + propagatedUserEnvPkgs = [ bluez-qt ]; + postInstall = '' + wrapQtProgram "$out/bin/bluedevil-wizard" + wrapQtProgram "$out/bin/bluedevil-sendfile" + # Fix the location of logic.js for the plasmoid + ln -s $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/code/logic.js $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/ui/logic.js + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix new file mode 100644 index 0000000000000..179f15dc87633 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/breeze-gtk.nix @@ -0,0 +1,8 @@ +{ plasmaPackage +, extra-cmake-modules +}: + +plasmaPackage { + name = "breeze-gtk"; + nativeBuildInputs = [ extra-cmake-modules ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix new file mode 100644 index 0000000000000..f8092bc9d376c --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt4.nix @@ -0,0 +1,29 @@ +{ plasmaPackage +, automoc4 +, cmake +, perl +, pkgconfig +, kdelibs +, qt4 +, xproto +}: + +plasmaPackage { + name = "breeze-qt4"; + sname = "breeze"; + buildInputs = [ + kdelibs + qt4 + xproto + ]; + nativeBuildInputs = [ + automoc4 + cmake + perl + pkgconfig + ]; + cmakeFlags = [ + "-DUSE_KDE4=ON" + "-DQT_QMAKE_EXECUTABLE=${qt4}/bin/qmake" + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix new file mode 100644 index 0000000000000..63ade168805d4 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix @@ -0,0 +1,23 @@ +{ plasmaPackage, extra-cmake-modules, frameworkintegration +, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons +, ki18n, kwindowsystem, makeQtWrapper, plasma-framework, qtx11extras +}: + +plasmaPackage { + name = "breeze-qt5"; + sname = "breeze"; + nativeBuildInputs = [ + extra-cmake-modules + makeQtWrapper + ]; + buildInputs = [ + kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons + ]; + propagatedBuildInputs = [ + frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras + ]; + cmakeFlags = [ "-DUSE_Qt4=OFF" ]; + postInstall = '' + wrapQtProgram "$out/bin/breeze-settings5" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix new file mode 100644 index 0000000000000..a4f5c7c232042 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -0,0 +1,88 @@ +# Maintainer's Notes: +# +# How To Update +# 1. Edit the URL in ./manifest.sh +# 2. Run ./manifest.sh +# 3. Fix build errors. + +{ pkgs, debug ? false }: + +let + + inherit (pkgs) lib stdenv symlinkJoin; + + kdeApps = pkgs.kdeApps_15_12; + + srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; + mirror = "mirror://kde"; + + packages = self: with self; { + plasmaPackage = args: + let + inherit (args) name; + sname = args.sname or name; + inherit (srcs."${sname}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + outputs = args.outputs or [ "dev" "out" ]; + + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ttuegel ]; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); + + bluedevil = callPackage ./bluedevil.nix {}; + breeze-gtk = callPackage ./breeze-gtk.nix {}; + breeze-qt4 = callPackage ./breeze-qt4.nix {}; + breeze-qt5 = callPackage ./breeze-qt5.nix {}; + breeze = + let + version = (builtins.parseDrvName breeze-qt5.name).version; + in + symlinkJoin "breeze-${version}" + (map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]); + kde-cli-tools = callPackage ./kde-cli-tools.nix {}; + kde-gtk-config = callPackage ./kde-gtk-config {}; + kdecoration = callPackage ./kdecoration.nix {}; + kdeplasma-addons = callPackage ./kdeplasma-addons.nix {}; + kgamma5 = callPackage ./kgamma5.nix {}; + khelpcenter = callPackage ./khelpcenter.nix {}; + khotkeys = callPackage ./khotkeys.nix {}; + kinfocenter = callPackage ./kinfocenter.nix {}; + kmenuedit = callPackage ./kmenuedit.nix {}; + kscreen = callPackage ./kscreen.nix {}; + kscreenlocker = callPackage ./kscreenlocker.nix {}; + ksshaskpass = callPackage ./ksshaskpass.nix {}; + ksysguard = callPackage ./ksysguard.nix {}; + kwayland = callPackage ./kwayland.nix {}; + kwin = callPackage ./kwin {}; + kwrited = callPackage ./kwrited.nix {}; + libkscreen = callPackage ./libkscreen {}; + libksysguard = callPackage ./libksysguard {}; + milou = callPackage ./milou.nix {}; + oxygen = callPackage ./oxygen.nix {}; + plasma-desktop = callPackage ./plasma-desktop {}; + plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; + plasma-nm = callPackage ./plasma-nm {}; + plasma-pa = callPackage ./plasma-pa.nix {}; + plasma-workspace = callPackage ./plasma-workspace {}; + plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; + polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; + powerdevil = callPackage ./powerdevil.nix {}; + startkde = callPackage ./startkde {}; + systemsettings = callPackage ./systemsettings.nix {}; + }; + +in packages diff --git a/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh b/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh new file mode 100755 index 0000000000000..93f58373ca290 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/fetchsrcs.sh @@ -0,0 +1,57 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.kde.org/stable/plasma/5.6.3/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix new file mode 100644 index 0000000000000..7f19af6959ec2 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix @@ -0,0 +1,27 @@ +{ plasmaPackage, extra-cmake-modules, kcmutils, kconfig +, kdelibs4support, kdesu, kdoctools, ki18n, kiconthemes +, kwindowsystem, makeQtWrapper, qtsvg, qtx11extras +}: + +plasmaPackage { + name = "kde-cli-tools"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kcmutils kconfig kdesu kiconthemes + ]; + propagatedBuildInputs = [ + kdelibs4support ki18n kwindowsystem qtsvg qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/kmimetypefinder5" + wrapQtProgram "$out/bin/ksvgtopng5" + wrapQtProgram "$out/bin/ktraderclient5" + wrapQtProgram "$out/bin/kioclient5" + wrapQtProgram "$out/bin/kdecp5" + wrapQtProgram "$out/bin/keditfiletype5" + wrapQtProgram "$out/bin/kcmshell5" + wrapQtProgram "$out/bin/kdemv5" + wrapQtProgram "$out/bin/kstart5" + wrapQtProgram "$out/bin/kde-open5" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch new file mode 100644 index 0000000000000..759eda4cc134c --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/0001-follow-symlinks.patch @@ -0,0 +1,39 @@ +From 33b25c2e3c7a002c7f726cd79fc4bab22b1299be Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Tue, 27 Oct 2015 18:07:54 -0500 +Subject: [PATCH] follow symlinks + +--- + src/appearancegtk2.cpp | 2 +- + src/iconthemesmodel.cpp | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/appearancegtk2.cpp b/src/appearancegtk2.cpp +index b1e0b52..095cddc 100644 +--- a/src/appearancegtk2.cpp ++++ b/src/appearancegtk2.cpp +@@ -73,7 +73,7 @@ QString AppearanceGTK2::themesGtkrcFile(const QString& themeName) const + QStringList themes=installedThemes(); + themes=themes.filter(QRegExp("/"+themeName+"/?$")); + if(themes.size()==1) { +- QDirIterator it(themes.first(), QDirIterator::Subdirectories); ++ QDirIterator it(themes.first(), QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while(it.hasNext()) { + it.next(); + if(it.fileName()=="gtkrc") { +diff --git a/src/iconthemesmodel.cpp b/src/iconthemesmodel.cpp +index 07c7ad7..b04d978 100644 +--- a/src/iconthemesmodel.cpp ++++ b/src/iconthemesmodel.cpp +@@ -46,7 +46,7 @@ QList IconThemesModel::installedThemesPaths() + + foreach(const QString& dir, dirs) { + QDir userIconsDir(dir); +- QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks); ++ QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs); + while(it.hasNext()) { + QString currentPath = it.next(); + QDir dir(currentPath); +-- +2.6.2 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix new file mode 100644 index 0000000000000..ab8867520b380 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix @@ -0,0 +1,28 @@ +{ plasmaPackage +, extra-cmake-modules +, glib +, gtk2 +, gtk3 +, karchive +, kcmutils +, kconfigwidgets +, ki18n +, kiconthemes +, kio +, knewstuff +}: + +plasmaPackage { + name = "kde-gtk-config"; + patches = [ ./0001-follow-symlinks.patch ]; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes + knewstuff + ]; + propagatedBuildInputs = [ ki18n kio ]; + cmakeFlags = [ + "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" + "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix b/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix new file mode 100644 index 0000000000000..eb65f7f90afbe --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kdecoration.nix @@ -0,0 +1,6 @@ +{ plasmaPackage, extra-cmake-modules }: + +plasmaPackage { + name = "kdecoration"; + nativeBuildInputs = [ extra-cmake-modules ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix new file mode 100644 index 0000000000000..d6a96a3276d75 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix @@ -0,0 +1,21 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig +, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n +, kio, knewstuff, kross, krunner, kservice, kunitconversion +, plasma-framework, qtdeclarative, qtx11extras +}: + +plasmaPackage { + name = "kdeplasma-addons"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + ibus kconfig kconfigwidgets kcoreaddons kcmutils + knewstuff kservice kunitconversion + ]; + propagatedBuildInputs = [ + kdelibs4support kio kross krunner plasma-framework qtdeclarative + qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix b/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix new file mode 100644 index 0000000000000..965c33e6eef8d --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kgamma5.nix @@ -0,0 +1,9 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kdelibs4support +, qtx11extras +}: + +plasmaPackage { + name = "kgamma5"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + propagatedBuildInputs = [ kdelibs4support qtx11extras ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix b/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix new file mode 100644 index 0000000000000..6ba860b9dfb26 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix @@ -0,0 +1,20 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig +, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support +, khtml, kservice, makeQtWrapper +}: + +plasmaPackage { + name = "khelpcenter"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kconfig kcoreaddons kdbusaddons kinit kcmutils kservice + ]; + propagatedBuildInputs = [ kdelibs4support khtml ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/khelpcenter" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix new file mode 100644 index 0000000000000..141320e6b3e69 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix @@ -0,0 +1,16 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils +, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui +, plasma-framework, plasma-workspace, qtx11extras +}: + +plasmaPackage { + name = "khotkeys"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcmutils kdbusaddons kxmlgui + ]; + propagatedBuildInputs = [ + kdelibs4support kglobalaccel ki18n kio plasma-framework + plasma-workspace qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix new file mode 100644 index 0000000000000..ed717790cd0d8 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix @@ -0,0 +1,24 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils +, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons +, kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kpackage +, kservice, kwidgetsaddons, kxmlgui, libraw1394, makeQtWrapper +, pciutils, solid +}: + +plasmaPackage { + name = "kinfocenter"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kcmutils kcompletion kconfig kconfigwidgets kcoreaddons + kdbusaddons kiconthemes kpackage kservice kwidgetsaddons + kxmlgui libraw1394 pciutils solid + ]; + propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ]; + postInstall = '' + wrapQtProgram "$out/bin/kinfocenter" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix new file mode 100644 index 0000000000000..3834ca1328f89 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix @@ -0,0 +1,19 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui +, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper +}: + +plasmaPackage { + name = "kmenuedit"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kxmlgui kdbusaddons kiconthemes + ]; + propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ]; + postInstall = '' + wrapQtProgram "$out/bin/kmenuedit" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix new file mode 100644 index 0000000000000..a521a79936281 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix @@ -0,0 +1,29 @@ +{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets +, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui +, libkscreen, makeQtWrapper, qtdeclarative, qtgraphicaleffects +}: + +plasmaPackage { + name = "kscreen"; + nativeBuildInputs = [ + extra-cmake-modules + makeQtWrapper + ]; + buildInputs = [ + kconfig + kconfigwidgets + kdbusaddons + kwidgetsaddons + kxmlgui + ]; + propagatedBuildInputs = [ + kglobalaccel + ki18n + libkscreen + qtdeclarative + qtgraphicaleffects + ]; + postInstall = '' + wrapQtProgram "$out/bin/kscreen-console" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix new file mode 100644 index 0000000000000..562797b546e9b --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix @@ -0,0 +1,19 @@ +{ plasmaPackage, extra-cmake-modules, kcmutils, kcrash, kdeclarative +, kdelibs4support, kdoctools, kglobalaccel, kidletime, kwayland +, libXcursor, pam, plasma-framework, qtdeclarative, wayland +}: + +plasmaPackage { + name = "kscreenlocker"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kcmutils kcrash kdelibs4support kglobalaccel kidletime kwayland + libXcursor pam wayland + ]; + propagatedBuildInputs = [ + kdeclarative plasma-framework qtdeclarative + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix new file mode 100644 index 0000000000000..f274512e027a1 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix @@ -0,0 +1,13 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kcoreaddons +, ki18n, kwallet, kwidgetsaddons, makeQtWrapper +}: + +plasmaPackage { + name = "ksshaskpass"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ kcoreaddons kwallet kwidgetsaddons ]; + propagatedBuildInputs = [ ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/ksshaskpass" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix new file mode 100644 index 0000000000000..d47f9215a41ab --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix @@ -0,0 +1,20 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig +, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff +, kiconthemes, libksysguard, makeQtWrapper +}: + +plasmaPackage { + name = "ksysguard"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard + ]; + propagatedBuildInputs = [ kdelibs4support ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/ksysguardd" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix new file mode 100644 index 0000000000000..e4d6eb631f957 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix @@ -0,0 +1,14 @@ +{ plasmaPackage +, extra-cmake-modules +, wayland +}: + +plasmaPackage { + name = "kwayland"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + wayland + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..797a32fc5f83a --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kwin/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From 78a4b554187c18fd86b62089f7730c4273fadd4c Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 07:05:22 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + clients/aurorae/src/aurorae.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp +index 781c960..ad5f420 100644 +--- a/clients/aurorae/src/aurorae.cpp ++++ b/clients/aurorae/src/aurorae.cpp +@@ -211,7 +211,7 @@ void Helper::init() + // so let's try to locate our plugin: + QString pluginPath; + for (const QString &path : m_engine->importPathList()) { +- QDirIterator it(path, QDirIterator::Subdirectories); ++ QDirIterator it(path, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + it.next(); + QFileInfo fileInfo = it.fileInfo(); +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix new file mode 100644 index 0000000000000..a09acb88aade6 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix @@ -0,0 +1,34 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, epoxy +, kactivities, kcompletion, kcmutils, kconfig, kconfigwidgets +, kcoreaddons, kcrash, kdeclarative, kdecoration, kglobalaccel +, ki18n, kiconthemes, kidletime, kinit, kio, knewstuff, knotifications +, kpackage, kscreenlocker, kservice, kwayland, kwidgetsaddons, kwindowsystem +, kxmlgui, libinput, libICE, libSM, plasma-framework, qtdeclarative +, qtmultimedia, qtscript, qtx11extras, udev, wayland, xcb-util-cursor +, makeQtWrapper +}: + +plasmaPackage { + name = "kwin"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + epoxy kcompletion kcmutils kconfig kconfigwidgets kcoreaddons + kcrash kdecoration kiconthemes kidletime kinit knewstuff knotifications + kpackage kservice kwayland kwidgetsaddons kxmlgui libinput libICE + libSM qtscript udev wayland xcb-util-cursor + ]; + propagatedBuildInputs = [ + kactivities kdeclarative kglobalaccel ki18n kio kscreenlocker + kwindowsystem plasma-framework qtdeclarative qtmultimedia qtx11extras + ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; + postInstall = '' + wrapQtProgram "$out/bin/kwin_x11" + wrapQtProgram "$out/bin/kwin_wayland" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix new file mode 100644 index 0000000000000..a6ed9d9bb2877 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix @@ -0,0 +1,10 @@ +{ plasmaPackage, extra-cmake-modules, kcoreaddons, ki18n, kpty +, knotifications, kdbusaddons +}: + +plasmaPackage { + name = "kwrited"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ]; + propagatedBuildInputs = [ ki18n ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix b/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix new file mode 100644 index 0000000000000..9fccbd6834c3e --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix @@ -0,0 +1,18 @@ +{ plasmaPackage +, extra-cmake-modules +, libXrandr +, qtx11extras +}: + +plasmaPackage { + name = "libkscreen"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + libXrandr + ]; + propagatedBuildInputs = [ + qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..fbbb11ae7556b --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From 46164a50de4102d02ae9d1d480acdd4b12303db8 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 07:07:22 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + processui/scripting.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/processui/scripting.cpp b/processui/scripting.cpp +index efed8ff..841761a 100644 +--- a/processui/scripting.cpp ++++ b/processui/scripting.cpp +@@ -167,7 +167,7 @@ void Scripting::loadContextMenu() { + QStringList scripts; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "ksysguard/scripts/", QStandardPaths::LocateDirectory); + Q_FOREACH (const QString& dir, dirs) { +- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + scripts.append(it.next()); + } +-- +2.5.2 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix new file mode 100644 index 0000000000000..402b3ce3beee9 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix @@ -0,0 +1,28 @@ +{ fetchpatch, plasmaPackage, extra-cmake-modules, kauth, kcompletion +, kconfigwidgets, kcoreaddons, kservice, kwidgetsaddons +, kwindowsystem, plasma-framework, qtscript, qtwebkit, qtx11extras +, kconfig, ki18n, kiconthemes +}: + +plasmaPackage { + name = "libksysguard"; + patches = [ + ./0001-qdiriterator-follow-symlinks.patch + (fetchpatch { # should be included on update + name = "glibc-2.23-isnan.patch"; + url = https://github.com/KDE/libksysguard/commit/b0578798eb3.patch; + sha256 = "1my5nqp58c5azyi265j261a10wh047zxakprrnpl85mlg7bwskdh"; + }) + ]; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kcompletion kconfigwidgets kcoreaddons kservice + kwidgetsaddons qtscript qtwebkit + ]; + propagatedBuildInputs = [ + kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework + qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma-5.6/milou.nix new file mode 100644 index 0000000000000..760de2d79ab4e --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/milou.nix @@ -0,0 +1,17 @@ +{ plasmaPackage, extra-cmake-modules, qtscript, qtdeclarative +, kcoreaddons, ki18n, kdeclarative, kservice, plasma-framework +, krunner +}: + +plasmaPackage { + name = "milou"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + qtscript kcoreaddons kservice + ]; + propagatedBuildInputs = [ + kdeclarative ki18n krunner plasma-framework qtdeclarative + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix new file mode 100644 index 0000000000000..02918100408ac --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix @@ -0,0 +1,20 @@ +{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig +, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion +, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras +}: + +plasmaPackage { + name = "oxygen"; + nativeBuildInputs = [ + extra-cmake-modules makeQtWrapper + ]; + buildInputs = [ + kcmutils kconfig kdecoration kguiaddons kwidgetsaddons + kservice kcompletion + ]; + propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/oxygen-demo5" + wrapQtProgram "$out/bin/oxygen-settings5" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch new file mode 100644 index 0000000000000..ead7452daa84d --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0001-qt-5.5-QML-import-paths.patch @@ -0,0 +1,67 @@ +From 7c379686def9f15be1aa8fa4b5358124f7ed57c6 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Mon, 19 Oct 2015 18:45:36 -0500 +Subject: [PATCH 1/3] qt-5.5 QML import paths + +--- + applets/pager/package/contents/ui/main.qml | 2 +- + containments/desktop/package/contents/ui/FolderView.qml | 2 +- + containments/desktop/package/contents/ui/main.qml | 2 +- + containments/panel/contents/ui/main.qml | 2 +- + 4 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/applets/pager/package/contents/ui/main.qml b/applets/pager/package/contents/ui/main.qml +index 0c367c6..c9a82be 100644 +--- a/applets/pager/package/contents/ui/main.qml ++++ b/applets/pager/package/contents/ui/main.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents + import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddonsComponents + import org.kde.draganddrop 2.0 + import org.kde.plasma.private.pager 2.0 +-import "utils.js" as Utils ++import "../code/utils.js" as Utils + + MouseArea { + id: root +diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml +index 578ec87..04e088c 100644 +--- a/containments/desktop/package/contents/ui/FolderView.qml ++++ b/containments/desktop/package/contents/ui/FolderView.qml +@@ -27,7 +27,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.kquickcontrolsaddons 2.0 + + import org.kde.private.desktopcontainment.folder 0.1 as Folder +-import "FolderTools.js" as FolderTools ++import "../code/FolderTools.js" as FolderTools + + Item { + id: main +diff --git a/containments/desktop/package/contents/ui/main.qml b/containments/desktop/package/contents/ui/main.qml +index 422e8f7..3c8906e 100644 +--- a/containments/desktop/package/contents/ui/main.qml ++++ b/containments/desktop/package/contents/ui/main.qml +@@ -29,7 +29,7 @@ import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons + + import org.kde.private.desktopcontainment.desktop 0.1 as Desktop + +-import "LayoutManager.js" as LayoutManager ++import "../code/LayoutManager.js" as LayoutManager + + DragDrop.DropArea { + id: root +diff --git a/containments/panel/contents/ui/main.qml b/containments/panel/contents/ui/main.qml +index bad6ba0..b1fc331 100644 +--- a/containments/panel/contents/ui/main.qml ++++ b/containments/panel/contents/ui/main.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents + import org.kde.kquickcontrolsaddons 2.0 + import org.kde.draganddrop 2.0 as DragDrop + +-import "LayoutManager.js" as LayoutManager ++import "../code/LayoutManager.js" as LayoutManager + + DragDrop.DropArea { + id: root +-- +2.6.3 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch new file mode 100644 index 0000000000000..17b01486d9289 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0002-hwclock.patch @@ -0,0 +1,36 @@ +From d0056fa6c1158408db169a7f5e6eb75691083094 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 22 Nov 2015 09:34:43 -0600 +Subject: [PATCH 2/3] hwclock + +--- + kcms/dateandtime/helper.cpp | 6 +----- + 1 file changed, 1 insertion(+), 5 deletions(-) + +diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp +index e955f0c..5171753 100644 +--- a/kcms/dateandtime/helper.cpp ++++ b/kcms/dateandtime/helper.cpp +@@ -48,10 +48,6 @@ + #include + #endif + +-// We cannot rely on the $PATH environment variable, because D-Bus activation +-// clears it. So we have to use a reasonable default. +-static const QString exePath = QStringLiteral("/usr/sbin:/usr/bin:/sbin:/bin"); +- + int ClockHelper::ntp( const QStringList& ntpServers, bool ntpEnabled ) + { + int ret = 0; +@@ -227,7 +223,7 @@ int ClockHelper::tzreset() + + void ClockHelper::toHwclock() + { +- QString hwclock = KStandardDirs::findExe(QStringLiteral("hwclock"), exePath); ++ QString hwclock = "@hwclock@"; + if (!hwclock.isEmpty()) { + KProcess::execute(hwclock, QStringList() << QStringLiteral("--systohc")); + } +-- +2.6.3 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch new file mode 100644 index 0000000000000..aba97b032f8a7 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/0003-tzdir.patch @@ -0,0 +1,30 @@ +From 0a8e2ae5cb64c5762408df920d99459b20d52b29 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 22 Nov 2015 09:39:24 -0600 +Subject: [PATCH 3/3] tzdir + +--- + kcms/dateandtime/helper.cpp | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp +index 5171753..92b5d9e 100644 +--- a/kcms/dateandtime/helper.cpp ++++ b/kcms/dateandtime/helper.cpp +@@ -181,7 +181,12 @@ int ClockHelper::tz( const QString& selectedzone ) + + val = selectedzone; + #else +- QString tz = "/usr/share/zoneinfo/" + selectedzone; ++ QString tzdir = QString::fromLocal8Bit(qgetenv("TZDIR")); ++ QString tz = tzdir + "/" + selectedzone; ++ if (tzdir.isEmpty()) { ++ // Standard Linux path ++ tz = "/usr/share/zoneinfo/" + selectedzone; ++ } + + if (QFile::exists(tz)) { // make sure the new TZ really exists + QFile::remove(QStringLiteral("/etc/localtime")); +-- +2.6.3 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix new file mode 100644 index 0000000000000..5f27efc7f24ca --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix @@ -0,0 +1,86 @@ +{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools +, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils +, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons +, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications +, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon +, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras +, qtsvg, libXcursor, libXft, libxkbfile, xf86inputevdev +, xf86inputsynaptics, xinput, xkeyboard_config, xorgserver +, libcanberra_kde, libpulseaudio, makeQtWrapper, utillinux +, qtquick1, qtquickcontrols +}: + +plasmaPackage rec { + name = "plasma-desktop"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + attica + boost + fontconfig + kcmutils + kdbusaddons + kded + kitemmodels + knewstuff + knotifications + knotifyconfig + kwallet + libcanberra_kde + libXcursor + libpulseaudio + libXft + libxkbfile + phonon + qtsvg + xf86inputevdev + xf86inputsynaptics + xkeyboard_config + xinput + ]; + propagatedBuildInputs = [ + baloo + kactivities + kauth + kdeclarative + kdelibs4support + kemoticons + kglobalaccel + ki18n + kpeople + krunner + kwin + plasma-framework + plasma-workspace + qtdeclarative + qtquick1 + qtquickcontrols + qtx11extras + ]; + patches = [ + ./0001-qt-5.5-QML-import-paths.patch + (substituteAll { + src = ./0002-hwclock.patch; + hwclock = "${utillinux}/sbin/hwclock"; + }) + ./0003-tzdir.patch + ]; + NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ]; + cmakeFlags = [ + "-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg" + "-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg" + ]; + postInstall = '' + wrapQtProgram "$out/bin/kaccess" + wrapQtProgram "$out/bin/solid-action-desktop-gen" + wrapQtProgram "$out/bin/knetattach" + wrapQtProgram "$out/bin/krdb" + wrapQtProgram "$out/bin/kapplymousetheme" + wrapQtProgram "$out/bin/kfontinst" + wrapQtProgram "$out/bin/kcm-touchpad-list-devices" + wrapQtProgram "$out/bin/kfontview" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix new file mode 100644 index 0000000000000..7088f45d64e29 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix @@ -0,0 +1,20 @@ +{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig +, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice +, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia +, taglib +}: + +plasmaPackage rec { + name = "plasma-mediacenter"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kconfig kcoreaddons kguiaddons kservice + qtdeclarative qtmultimedia taglib + ]; + propagatedBuildInputs = [ + baloo kactivities kdeclarative kfilemetadata ki18n kio + plasma-framework + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch new file mode 100644 index 0000000000000..79b5cfb437e26 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/0001-mobile-broadband-provider-info-path.patch @@ -0,0 +1,25 @@ +From faf13c97ff1192a201843b9d52f4002dbd9022af Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sun, 25 Oct 2015 09:09:27 -0500 +Subject: [PATCH] mobile-broadband-provider-info path + +--- + libs/editor/mobileproviders.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/libs/editor/mobileproviders.cpp b/libs/editor/mobileproviders.cpp +index 568cb34..98a5992 100644 +--- a/libs/editor/mobileproviders.cpp ++++ b/libs/editor/mobileproviders.cpp +@@ -26,7 +26,7 @@ + + #include + +-const QString MobileProviders::ProvidersFile = "/usr/share/mobile-broadband-provider-info/serviceproviders.xml"; ++const QString MobileProviders::ProvidersFile = "@mobile_broadband_provider_info@/share/mobile-broadband-provider-info/serviceproviders.xml"; + + bool localeAwareCompare(const QString & one, const QString & two) { + return one.localeAwareCompare(two) < 0; +-- +2.6.2 + diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix new file mode 100644 index 0000000000000..249c6d8aac942 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix @@ -0,0 +1,36 @@ +{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools +, kcompletion, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative +, kdelibs4support, ki18n, kiconthemes, kinit, kio, kitemviews +, knotifications, kservice, kwallet, kwidgetsaddons, kwindowsystem +, kxmlgui, makeQtWrapper, mobile_broadband_provider_info +, modemmanager-qt, networkmanager-qt, openconnect, plasma-framework +, qca-qt5, qtdeclarative, solid +}: + +plasmaPackage { + name = "plasma-nm"; + patches = [ + (substituteAll { + src = ./0001-mobile-broadband-provider-info-path.patch; + inherit mobile_broadband_provider_info; + }) + ]; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes + kinit kitemviews knotifications kservice kwallet kwidgetsaddons + kxmlgui mobile_broadband_provider_info modemmanager-qt + networkmanager-qt openconnect qca-qt5 solid + ]; + propagatedBuildInputs = [ + kdeclarative kdelibs4support ki18n kio kwindowsystem plasma-framework + qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kde5-nm-connection-editor" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix new file mode 100644 index 0000000000000..ff56d1199b152 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix @@ -0,0 +1,18 @@ +{ plasmaPackage, extra-cmake-modules, glib, kdoctools, kconfigwidgets +, kcoreaddons, kdeclarative, kglobalaccel, ki18n, libpulseaudio +, plasma-framework +}: + +plasmaPackage { + name = "plasma-pa"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + glib kconfigwidgets kcoreaddons libpulseaudio + ]; + propagatedBuildInputs = [ + kdeclarative kglobalaccel ki18n plasma-framework + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix new file mode 100644 index 0000000000000..bc87abcad153f --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace-wallpapers.nix @@ -0,0 +1,10 @@ +{ plasmaPackage +, extra-cmake-modules +}: + +plasmaPackage { + name = "plasma-workspace-wallpapers"; + nativeBuildInputs = [ + extra-cmake-modules + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix new file mode 100644 index 0000000000000..1a96c1eced2e0 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix @@ -0,0 +1,45 @@ +{ plasmaPackage, lib, copyPathsToStore +, extra-cmake-modules, kdoctools +, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative +, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime +, kjsembed, knewstuff, knotifyconfig, kpackage, krunner +, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient +, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt +, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland +, libksysguard, kconfig, solid, qtquickcontrols +}: + +plasmaPackage { + name = "plasma-workspace"; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit + kjsembed knewstuff knotifyconfig kpackage + ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM + libXcursor networkmanager-qt pam phonon qtscript + wayland + ]; + propagatedBuildInputs = [ + baloo kactivities kdeclarative kdelibs4support kglobalaccel + kidletime krunner ktexteditor kwin libkscreen libksysguard + plasma-framework qtquick1 qtquickcontrols qtx11extras solid + ]; + + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + + postPatch = '' + substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ + --replace kdostartupconfig5 $out/bin/kdostartupconfig5 + ''; + + postInstall = '' + rm "$out/bin/startkde" + rm "$out/bin/startplasmacompositor" + rm "$out/lib/libexec/startplasma" + rm -r "$out/share/wayland-sessions" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch new file mode 100644 index 0000000000000..1d34001be597d --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch @@ -0,0 +1,104 @@ +Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml ++++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl + import QtQuick.Layouts 1.1 + + import org.kde.plasma.core 2.0 as PlasmaCore +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: analogclock +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.plasma.workspace.components 2.0 + import org.kde.kcoreaddons 1.0 as KCoreAddons +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batteryItem +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.workspace.components 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + MouseArea { + id: root +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + FocusScope { + id: dialog +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.kcoreaddons 1.0 as KCoreAddons + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batterymonitor +Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml ++++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 + import org.kde.kquickcontrolsaddons 2.0 +-import "data.js" as Data ++import "../code/data.js" as Data + + Flow { + id: lockout +Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas + + import org.kde.plasma.private.notifications 1.0 + +-import "uiproperties.js" as UiProperties ++import "../code/uiproperties.js" as UiProperties + + MouseEventListener { + id: notificationsApplet +Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma + // import org.kde.plasma.extras 2.0 as PlasmaExtras + + import org.kde.private.systemtray 2.0 as SystemTray +-import "Layout.js" as LayoutManager ++import "../code/Layout.js" as LayoutManager + + Item { + id: root diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series new file mode 100644 index 0000000000000..b9081298bd693 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series @@ -0,0 +1 @@ +qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch new file mode 100644 index 0000000000000..eea0ae4c199d2 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch @@ -0,0 +1,372 @@ +Index: plasma-workspace-5.5.5/startkde/startkde.cmake +=================================================================== +--- plasma-workspace-5.5.5.orig/startkde/startkde.cmake ++++ plasma-workspace-5.5.5/startkde/startkde.cmake +@@ -1,8 +1,36 @@ +-#!/bin/sh ++#!@bash@ + # + # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) + # + ++set -x ++ ++# The KDE icon cache is supposed to update itself ++# automatically, but it uses the timestamp on the icon ++# theme directory as a trigger. Since in Nix the ++# timestamp is always the same, this doesn't work. So as ++# a workaround, nuke the icon cache on login. This isn't ++# perfect, since it may require logging out after ++# installing new applications to update the cache. ++# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html ++rm -fv $HOME/.cache/icon-cache.kcache ++ ++# Qt writes a weird ‘libraryPath’ line to ++# ~/.config/Trolltech.conf that causes the KDE plugin ++# paths of previous KDE invocations to be searched. ++# Obviously using mismatching KDE libraries is potentially ++# disastrous, so here we nuke references to the Nix store ++# in Trolltech.conf. A better solution would be to stop ++# Qt from doing this wackiness in the first place. ++if [ -e $HOME/.config/Trolltech.conf ]; then ++ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf ++fi ++ ++# (NixOS) We run kbuildsycoca5 before starting the user session because things ++# may be missing or moved if they have run nixos-rebuild and it may not be ++# possible for them to start Konsole to run it manually! ++@kbuildsycoca5@ ++ + if test "x$1" = x--failsafe; then + KDE_FAILSAFE=1 # General failsafe flag + KWIN_COMPOSE=N # Disable KWin's compositing +@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP + # we have to unset this for Darwin since it will screw up KDE's dynamic-loading + unset DYLD_FORCE_FLAT_NAMESPACE + +-# in case we have been started with full pathname spec without being in PATH +-bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` +-if [ -n "$bindir" ]; then +- qbindir=`qtpaths --binaries-dir` +- qdbus=$qbindir/qdbus +- case $PATH in +- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; +- *) PATH=$bindir:$PATH; export PATH;; +- esac +-else +- qdbus=qdbus +-fi +- + # Check if a KDE session already is running and whether it's possible to connect to X +-kcheckrunning ++@kcheckrunning@ + kcheckrunning_result=$? + if test $kcheckrunning_result -eq 0 ; then +- echo "KDE seems to be already running on this display." +- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null ++ echo "KDE seems to be already running on this display." ++ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display." + exit 1 + elif test $kcheckrunning_result -eq 2 ; then + echo "\$DISPLAY is not set or cannot connect to the X server." +- exit 1 ++ exit 1 + fi + + # Boot sequence: +@@ -57,13 +72,8 @@ fi + # * Then ksmserver is started which takes control of the rest of the startup sequence + + # We need to create config folder so we can write startupconfigkeys +-if [ ${XDG_CONFIG_HOME} ]; then +- configDir=$XDG_CONFIG_HOME; +-else +- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html +-fi +- +-mkdir -p $configDir ++configDir=$(@qtpaths@ --writable-path GenericConfigLocation) ++mkdir -p "$configDir" + + #This is basically setting defaults so we can use them with kstartupconfig5 + cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then ++ : # ok ++else ++ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 ++ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null ++ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" ++ exit 1 ++fi ++ + ksplash_pid= + if test -z "$dl"; then + # the splashscreen and progress indicator + case "$ksplashrc_ksplash_engine" in + KSplashQML) +- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` ++ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` + ;; + None) + ;; +@@ -201,8 +199,7 @@ fi + # For anything else (that doesn't set env vars, or that needs a window manager), + # better use the Autostart folder. + +-# TODO: Use GenericConfigLocation once we depend on Qt 5.4 +-scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` ++scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g') + + # Add /env/ to the directory to locate the scripts to be sourced + for prefix in `echo $scriptpath`; do +@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override + usr_fdir=$HOME/.fonts + + if test -n "$KDEDIRS"; then +- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` ++ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'` + sys_odir=$kdedirs_first/share/fonts/override + sys_fdir=$kdedirs_first/share/fonts + else +@@ -245,23 +242,13 @@ fi + # add the user's dirs to the font path, as they might simply have been made + # read-only by the administrator, for whatever reason. + +-test -d "$sys_odir" && xset +fp "$sys_odir" +-test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") +-test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") +-test -d "$sys_fdir" && xset fp+ "$sys_fdir" ++test -d "$sys_odir" && @xset@ +fp "$sys_odir" ++test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" ) ++test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" ) ++test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir" + + # Ask X11 to rebuild its font list. +-xset fp rehash +- +-# Set a left cursor instead of the standard X11 "X" cursor, since I've heard +-# from some users that they're confused and don't know what to do. This is +-# especially necessary on slow machines, where starting KDE takes one or two +-# minutes until anything appears on the screen. +-# +-# If the user has overwritten fonts, the cursor font may be different now +-# so don't move this up. +-# +-xsetroot -cursor_name left_ptr ++@xset@ fp rehash + + # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap + if test -n "$GS_LIB" ; then +@@ -274,26 +261,6 @@ fi + + echo 'startkde: Starting up...' 1>&2 + +-# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. +-# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend +-# to set it to a list of paths *not* including the KDE prefix if it's not /usr or +-# /usr/local. +-if test -z "$XDG_DATA_DIRS"; then +- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" +-fi +-export XDG_DATA_DIRS +- +-# Make sure that D-Bus is running +-if $qdbus >/dev/null 2>/dev/null; then +- : # ok +-else +- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 +- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" +- exit 1 +-fi +- +- + # Mark that full KDE session is running (e.g. Konqueror preloading works only + # with full KDE running). The KDE_FULL_SESSION property can be detected by + # any X client connected to the same X session, even if not launched +@@ -318,11 +285,11 @@ fi + # + KDE_FULL_SESSION=true + export KDE_FULL_SESSION +-xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true ++@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true + + KDE_SESSION_VERSION=5 + export KDE_SESSION_VERSION +-xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 ++@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 + + KDE_SESSION_UID=`id -ru` + export KDE_SESSION_UID +@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP + + # At this point all the environment is ready, let's send it to kwalletd if running + if test -n "$PAM_KWALLET_LOGIN" ; then +- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN + fi + # ...and also to kwalletd5 + if test -n "$PAM_KWALLET5_LOGIN" ; then +- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN + fi + + # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment +@@ -349,18 +316,18 @@ if test $? -ne 0; then + # Startup error + echo 'startkde: Could not sync environment to dbus.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not sync environment to dbus." ++ @xmessage@ -geometry 500x100 "Could not sync environment to dbus." + exit 1 + fi + + # We set LD_BIND_NOW to increase the efficiency of kdeinit. + # kdeinit unsets this variable before loading applications. +-LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup ++LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup + if test $? -ne 0; then + # Startup error + echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation." + exit 1 + fi + +@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag + # lock now and do the rest of the KDE startup underneath the locker. + KSMSERVEROPTIONS="" + test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" +-kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS ++@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS + if test $? -eq 255; then + # Startup error + echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation." + fi + +-wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` ++wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true` + + if test x"$wait_drkonqi"x = x"true"x ; then + # wait for remaining drkonqi instances with timeout (in seconds) +- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` ++ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900` + wait_drkonqi_counter=0 +- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do ++ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do + sleep 5 + wait_drkonqi_counter=$((wait_drkonqi_counter+5)) + if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then + # ask remaining drkonqis to die in a graceful way +- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do +- $qdbus "$address" "/MainApplication" "quit" ++ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do ++ @qdbus@ "$address" "/MainApplication" "quit" + done + break + fi +@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + + # Clean up +-kdeinit5_shutdown ++@kdeinit5_shutdown@ + + unset KDE_FULL_SESSION +-xprop -root -remove KDE_FULL_SESSION ++@xprop@ -root -remove KDE_FULL_SESSION + unset KDE_SESSION_VERSION +-xprop -root -remove KDE_SESSION_VERSION ++@xprop@ -root -remove KDE_SESSION_VERSION + unset KDE_SESSION_UID + + echo 'startkde: Done.' 1>&2 diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix new file mode 100644 index 0000000000000..3fc3a441ac344 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix @@ -0,0 +1,31 @@ +{ plasmaPackage +, extra-cmake-modules +, ki18n +, kwindowsystem +, kdbusaddons +, kwidgetsaddons +, kcoreaddons +, kcrash +, kconfig +, kiconthemes +, knotifications +, polkit-qt +}: + +plasmaPackage { + name = "polkit-kde-agent"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kdbusaddons + kwidgetsaddons + kcoreaddons + kcrash + kconfig + kiconthemes + knotifications + polkit-qt + ]; + propagatedBuildInputs = [ ki18n kwindowsystem ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix new file mode 100644 index 0000000000000..475e8878206ad --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix @@ -0,0 +1,20 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities +, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n +, kidletime, kio, knotifyconfig, kwayland, libkscreen, plasma-workspace +, qtx11extras, solid, udev +}: + +plasmaPackage { + name = "powerdevil"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kconfig kdbusaddons knotifyconfig solid udev + ]; + propagatedBuildInputs = [ + kactivities kauth kdelibs4support kglobalaccel ki18n kio kidletime + kwayland libkscreen plasma-workspace qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh b/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh new file mode 100644 index 0000000000000..a8d9b7e0e36f4 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh @@ -0,0 +1 @@ +addToSearchPath XDG_DATA_DIRS @out@/share diff --git a/pkgs/desktops/kde-5/plasma-5.6/srcs.nix b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix new file mode 100644 index 0000000000000..288378771e503 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/srcs.nix @@ -0,0 +1,341 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + bluedevil = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/bluedevil-5.6.3.tar.xz"; + sha256 = "1x8rdsk2jhx01pfw5d74ks2240w9pky7c38rwb84w18l3w1mrq6q"; + name = "bluedevil-5.6.3.tar.xz"; + }; + }; + breeze = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/breeze-5.6.3.tar.xz"; + sha256 = "191pkbkn1hb1c2k7f5y8x2wm99p4v2rm74jk1ygqk72bh8wpc9zx"; + name = "breeze-5.6.3.tar.xz"; + }; + }; + breeze-grub = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/breeze-grub-5.6.3.tar.xz"; + sha256 = "0i4kxjw8rmp3y40z10yyc792kbvyai9pxd4lva24bilzsh3x2g5c"; + name = "breeze-grub-5.6.3.tar.xz"; + }; + }; + breeze-gtk = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/breeze-gtk-5.6.3.tar.xz"; + sha256 = "0yr20v5b0hq4jicfx8lxmy23znqwf3d87hz88qiizjiad4fyy4ca"; + name = "breeze-gtk-5.6.3.tar.xz"; + }; + }; + breeze-plymouth = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/breeze-plymouth-5.6.3.tar.xz"; + sha256 = "0gkiwravkpxwk9r6l0mzjyr5hc9fpj1d6l5a0i755q7m80h1dahk"; + name = "breeze-plymouth-5.6.3.tar.xz"; + }; + }; + discover = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/discover-5.6.3.tar.xz"; + sha256 = "1rpn22xjabsaakqgdsx0vz4h0v40l8ssfrjqahpj95axs14zi2gg"; + name = "discover-5.6.3.tar.xz"; + }; + }; + kactivitymanagerd = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kactivitymanagerd-5.6.3.tar.xz"; + sha256 = "0zs3z4r27iiqz3wjsv09ik3h45g2f08y1p3mr1ihiss07qgknbz6"; + name = "kactivitymanagerd-5.6.3.tar.xz"; + }; + }; + kde-cli-tools = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kde-cli-tools-5.6.3.tar.xz"; + sha256 = "1cxbvgc3nhrr98ygm3i7srr26ds2rmbg6fzjqvdz2z4bz80ai892"; + name = "kde-cli-tools-5.6.3.tar.xz"; + }; + }; + kdecoration = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kdecoration-5.6.3.tar.xz"; + sha256 = "03iryqrkrpphvc8xpqmmpbdgg7rim9yvvyx3kxrjgpbh2xy6rwsr"; + name = "kdecoration-5.6.3.tar.xz"; + }; + }; + kde-gtk-config = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kde-gtk-config-5.6.3.tar.xz"; + sha256 = "0jiraahajpfn5k81j077l4ipfadq9aqnnca0kfyag488mhkgmil1"; + name = "kde-gtk-config-5.6.3.tar.xz"; + }; + }; + kdeplasma-addons = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kdeplasma-addons-5.6.3.tar.xz"; + sha256 = "1p70ms91hd9lhg9fabnrpz1wkc2la9315ffk2wxi334sx4k70gcs"; + name = "kdeplasma-addons-5.6.3.tar.xz"; + }; + }; + kgamma5 = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kgamma5-5.6.3.tar.xz"; + sha256 = "1wv32s6yc4b8qaskdb444r7j918pz0x8mkal5affbr12vzfz8m6r"; + name = "kgamma5-5.6.3.tar.xz"; + }; + }; + khelpcenter = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/khelpcenter-5.6.3.tar.xz"; + sha256 = "14mwy1rv04mp92dfci6ak6dvmaqx2vc0yk0zyp1v6s64jiry658g"; + name = "khelpcenter-5.6.3.tar.xz"; + }; + }; + khotkeys = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/khotkeys-5.6.3.tar.xz"; + sha256 = "05235ckdr81cl46iyalapjxxmybqd8b2zy1yqclv7fwld2c347pc"; + name = "khotkeys-5.6.3.tar.xz"; + }; + }; + kinfocenter = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kinfocenter-5.6.3.tar.xz"; + sha256 = "1rvixj9sr98abna8ss6bmvf7g7i4nm5xa49dv4d42874kskqjci5"; + name = "kinfocenter-5.6.3.tar.xz"; + }; + }; + kmenuedit = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kmenuedit-5.6.3.tar.xz"; + sha256 = "169ybp4vvay5isfwk2kv73npspiww2abb4vaa7af8rbiv82cwr0g"; + name = "kmenuedit-5.6.3.tar.xz"; + }; + }; + kscreen = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kscreen-5.6.3.tar.xz"; + sha256 = "1cvgxwdh742r7dk59qqa4w28sd7k62gjy7w5hmq3dnhka0nlxr74"; + name = "kscreen-5.6.3.tar.xz"; + }; + }; + kscreenlocker = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kscreenlocker-5.6.3.tar.xz"; + sha256 = "13fqmazqrhcdg32iwdym9rci9fj2jn02mkc01rz8fw9a8fwxzdcn"; + name = "kscreenlocker-5.6.3.tar.xz"; + }; + }; + ksshaskpass = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/ksshaskpass-5.6.3.tar.xz"; + sha256 = "0bxpwlylfnicipwkf5fq3s62w9gq8gcxl6iby1lmw8m55fm1xd7y"; + name = "ksshaskpass-5.6.3.tar.xz"; + }; + }; + ksysguard = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/ksysguard-5.6.3.tar.xz"; + sha256 = "0vh0wpsv0jlj6lq6fl45k7aivbj2nwq5ksfnyad74v20qhy2069b"; + name = "ksysguard-5.6.3.tar.xz"; + }; + }; + kwallet-pam = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kwallet-pam-5.6.3.tar.xz"; + sha256 = "1zy5s3pv7qlyckzaz7yvqzb0w478q6zldmm5w7m4ax90j16ihg7n"; + name = "kwallet-pam-5.6.3.tar.xz"; + }; + }; + kwayland = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kwayland-5.6.3.tar.xz"; + sha256 = "04rpvgs25dqrac8bg46w1dpxpwavrlrjyc71bxqiddrya798485v"; + name = "kwayland-5.6.3.tar.xz"; + }; + }; + kwayland-integration = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kwayland-integration-5.6.3.tar.xz"; + sha256 = "19p224n7knih7gikcxkx6n4v49ysgkxd6ghpqwnw5y6jx147qyg4"; + name = "kwayland-integration-5.6.3.tar.xz"; + }; + }; + kwin = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kwin-5.6.3.tar.xz"; + sha256 = "0dxscqk5kqkqfq5cs8qpfwi38i20q3w7r8wvq5l8r9q0q56bsnrk"; + name = "kwin-5.6.3.tar.xz"; + }; + }; + kwrited = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/kwrited-5.6.3.tar.xz"; + sha256 = "18lqr7an6zzlqs2s50arw5zwfdzxl644c7i00j332nlv23yxc1g3"; + name = "kwrited-5.6.3.tar.xz"; + }; + }; + libkscreen = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/libkscreen-5.6.3.tar.xz"; + sha256 = "0w1v432i8xjk0xgs6vbz68myfqfa93kzhhya4mqri7jzjc6nyc1y"; + name = "libkscreen-5.6.3.tar.xz"; + }; + }; + libksysguard = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/libksysguard-5.6.3.tar.xz"; + sha256 = "16pf9p9dbq08mlqrcqrxsmwxgi1dp1rzbm4icksr99cjm30zss0g"; + name = "libksysguard-5.6.3.tar.xz"; + }; + }; + milou = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/milou-5.6.3.tar.xz"; + sha256 = "18d3knb1ndj39pffy5xsqdyncsym0izv73r0cmmc3mw8x7xshcfc"; + name = "milou-5.6.3.tar.xz"; + }; + }; + oxygen = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/oxygen-5.6.3.tar.xz"; + sha256 = "1pnal63by1hnjal356lmadk7sxq2pndi1gfhf8lmqpw0n5dwd9ng"; + name = "oxygen-5.6.3.tar.xz"; + }; + }; + plasma-desktop = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-desktop-5.6.3.tar.xz"; + sha256 = "0dk4ya5srb4czslakbi1f7gyrriv1lb6cdkfirqznax561bk6dk7"; + name = "plasma-desktop-5.6.3.tar.xz"; + }; + }; + plasma-integration = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-integration-5.6.3.tar.xz"; + sha256 = "0wx62s6l8kqhsrc88zji9ydaqgplc9y7l2s52qfwm2g464k4i1qw"; + name = "plasma-integration-5.6.3.tar.xz"; + }; + }; + plasma-mediacenter = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-mediacenter-5.6.3.tar.xz"; + sha256 = "17g5hkpjqsifb413f4p9y10hnbk74k3vbk5srcx46byrsjbkasgq"; + name = "plasma-mediacenter-5.6.3.tar.xz"; + }; + }; + plasma-nm = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-nm-5.6.3.tar.xz"; + sha256 = "0axsv7nxfwqhjq3j5yn30b76wvr8p21p5jlqspq7yxhmxhk88x4j"; + name = "plasma-nm-5.6.3.tar.xz"; + }; + }; + plasma-pa = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-pa-5.6.3.tar.xz"; + sha256 = "1d623xav0ckabckr9v51sg6a6695fi7pkcy86q2lrpg1m6f2m2l3"; + name = "plasma-pa-5.6.3.tar.xz"; + }; + }; + plasma-sdk = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-sdk-5.6.3.tar.xz"; + sha256 = "0w8gcm0hgqk3yqr981zf1xzd024b06y7zxqmzsbzcr3sfh85f0b2"; + name = "plasma-sdk-5.6.3.tar.xz"; + }; + }; + plasma-workspace = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-workspace-5.6.3.tar.xz"; + sha256 = "0p4g15x1ifcc4kn224h66a6fyv3iki1qqpfnihvmkdxmifmbzy2c"; + name = "plasma-workspace-5.6.3.tar.xz"; + }; + }; + plasma-workspace-wallpapers = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/plasma-workspace-wallpapers-5.6.3.tar.xz"; + sha256 = "0jdwm01q7h47qrx832kqshrh17dz4dhjbqmy1x17barxd759kd09"; + name = "plasma-workspace-wallpapers-5.6.3.tar.xz"; + }; + }; + polkit-kde-agent = { + version = "1-5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/polkit-kde-agent-1-5.6.3.tar.xz"; + sha256 = "1d28v8fb5w5snfn5nwghz8mwvk8p1ahs3kxjkhqkwb6sb6l0kkq1"; + name = "polkit-kde-agent-1-5.6.3.tar.xz"; + }; + }; + powerdevil = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/powerdevil-5.6.3.tar.xz"; + sha256 = "1gq04f2pgr3y7wi3jg6xrk8b3fhf1fqn82knv7cix0d5b2khy2lp"; + name = "powerdevil-5.6.3.tar.xz"; + }; + }; + sddm-kcm = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/sddm-kcm-5.6.3.tar.xz"; + sha256 = "1kqkl4p65vl2mvgigw24w3p9p4f0j2fz4d2rv1iy2w93kznl9b4s"; + name = "sddm-kcm-5.6.3.tar.xz"; + }; + }; + systemsettings = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/systemsettings-5.6.3.tar.xz"; + sha256 = "16fgr1qwfbmzriajisq4sj978lni11d4ig80z7k1h7g5xxhahk9k"; + name = "systemsettings-5.6.3.tar.xz"; + }; + }; + user-manager = { + version = "5.6.3"; + src = fetchurl { + url = "${mirror}/stable/plasma/5.6.3/user-manager-5.6.3.tar.xz"; + sha256 = "1slvz0nxhafpprbdzf87dpiw62yar62ia78rcr9xabgz2rfl0bhl"; + name = "user-manager-5.6.3.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix new file mode 100644 index 0000000000000..30e986c21b4b0 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/startkde/default.nix @@ -0,0 +1,32 @@ +{ stdenv, lib, runCommand +, dbus, qttools, socat +, gnugrep, gnused +, kconfig, kinit, kservice +, plasma-workspace +, xmessage, xprop, xsetroot +}: + +let + + env = { + inherit (stdenv) shell; + paths = builtins.map (pkg: pkg.out or pkg) + [ + dbus qttools socat + gnugrep gnused + kconfig kinit kservice + plasma-workspace + xmessage xprop xsetroot + ]; + }; + +in runCommand "startkde" env '' + prefix_PATH= + for pkg in $paths; do + addToSearchPath prefix_PATH "$pkg/bin" + addToSearchPath prefix_PATH "$pkg/lib/libexec" + addToSearchPath prefix_PATH "$pkg/lib/libexec/kf5" + done + substitute ${./startkde.sh} "$out" --subst-var shell --subst-var prefix_PATH + chmod +x "$out" +'' diff --git a/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh new file mode 100755 index 0000000000000..d839226a45624 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/startkde/startkde.sh @@ -0,0 +1,334 @@ +#!@shell@ + +PATH="@prefix_PATH@:$PATH" + +# The KDE icon cache is supposed to update itself +# automatically, but it uses the timestamp on the icon +# theme directory as a trigger. Since in Nix the +# timestamp is always the same, this doesn't work. So as +# a workaround, nuke the icon cache on login. This isn't +# perfect, since it may require logging out after +# installing new applications to update the cache. +# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html +rm -fv $HOME/.cache/icon-cache.kcache + +# Qt writes a weird ‘libraryPath’ line to +# ~/.config/Trolltech.conf that causes the KDE plugin +# paths of previous KDE invocations to be searched. +# Obviously using mismatching KDE libraries is potentially +# disastrous, so here we nuke references to the Nix store +# in Trolltech.conf. A better solution would be to stop +# Qt from doing this wackiness in the first place. +if [ -e $HOME/.config/Trolltech.conf ]; then + sed -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf +fi + +if test "x$1" = x--failsafe; then + KDE_FAILSAFE=1 # General failsafe flag + KWIN_COMPOSE=N # Disable KWin's compositing + QT_XCB_FORCE_SOFTWARE_OPENGL=1 + export KWIN_COMPOSE KDE_FAILSAFE QT_XCB_FORCE_SOFTWARE_OPENGL +fi + +# When the X server dies we get a HUP signal from xinit. We must ignore it +# because we still need to do some cleanup. +trap 'echo GOT SIGHUP' HUP + +# we have to unset this for Darwin since it will screw up KDE's dynamic-loading +unset DYLD_FORCE_FLAT_NAMESPACE + +# Check if a KDE session already is running and whether it's possible to connect to X +kcheckrunning +kcheckrunning_result=$? +if test $kcheckrunning_result -eq 0 ; then + echo "KDE seems to be already running on this display." + xmessage -geometry 500x100 "KDE seems to be already running on this display." + exit 1 +elif test $kcheckrunning_result -eq 2 ; then + echo "\$DISPLAY is not set or cannot connect to the X server." + exit 1 +fi + +# Boot sequence: +# +# kdeinit is used to fork off processes which improves memory usage +# and startup time. +# +# * kdeinit starts klauncher first. +# * Then kded is started. kded is responsible for keeping the sycoca +# database up to date. When an up to date database is present it goes +# into the background and the startup continues. +# * Then kdeinit starts kcminit. kcminit performs initialisation of +# certain devices according to the user's settings +# +# * Then ksmserver is started which takes control of the rest of the startup sequence + +# We need to create config folder so we can write startupconfigkeys +configDir=$(qtpaths --writable-path GenericConfigLocation) +mkdir -p "$configDir" + +#This is basically setting defaults so we can use them with kstartupconfig5 +cat >$configDir/startupconfigkeys <$plasmalocalerc <$kdeglobalsfile </dev/null 2>/dev/null; then + : # ok +else + echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" + exit 1 +fi + +ksplash_pid= +if test -z "$dl"; then + # the splashscreen and progress indicator + case "$ksplashrc_ksplash_engine" in + KSplashQML) + ksplash_pid=$(ksplashqml "${ksplashrc_ksplash_theme}" --pid) + ;; + None) + ;; + *) + ;; + esac +fi + +# Source scripts found in /plasma-workspace/env/*.sh +# (where correspond to the system and user's configuration +# directories, as identified by Qt's qtpaths, e.g. $HOME/.config +# and /etc/xdg/ on Linux) +# +# This is where you can define environment variables that will be available to +# all KDE programs, so this is where you can run agents using e.g. eval `ssh-agent` +# or eval `gpg-agent --daemon`. +# Note: if you do that, you should also put "ssh-agent -k" as a shutdown script +# +# (see end of this file). +# For anything else (that doesn't set env vars, or that needs a window manager), +# better use the Autostart folder. + +IFS=":" read -r -a scriptpath <<< $(qtpaths --paths GenericConfigLocation) +# Add /env/ to the directory to locate the scripts to be sourced +for prefix in "${scriptpath[@]}"; do + for file in "$prefix"/plasma-workspace/env/*.sh; do + test -r "$file" && . "$file" || true + done +done + +echo 'startkde: Starting up...' 1>&2 + +# Mark that full KDE session is running (e.g. Konqueror preloading works only +# with full KDE running). The KDE_FULL_SESSION property can be detected by +# any X client connected to the same X session, even if not launched +# directly from the KDE session but e.g. using "ssh -X", kdesu. $KDE_FULL_SESSION +# however guarantees that the application is launched in the same environment +# like the KDE session and that e.g. KDE utilities/libraries are available. +# KDE_FULL_SESSION property is also only available since KDE 3.5.5. +# The matching tests are: +# For $KDE_FULL_SESSION: +# if test -n "$KDE_FULL_SESSION"; then ... whatever +# For KDE_FULL_SESSION property: +# xprop -root | grep "^KDE_FULL_SESSION" >/dev/null 2>/dev/null +# if test $? -eq 0; then ... whatever +# +# Additionally there is (since KDE 3.5.7) $KDE_SESSION_UID with the uid +# of the user running the KDE session. It should be rarely needed (e.g. +# after sudo to prevent desktop-wide functionality in the new user's kded). +# +# Since KDE4 there is also KDE_SESSION_VERSION, containing the major version number. +# Note that this didn't exist in KDE3, which can be detected by its absense and +# the presence of KDE_FULL_SESSION. +# +KDE_FULL_SESSION=true +export KDE_FULL_SESSION +xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true + +KDE_SESSION_VERSION=5 +export KDE_SESSION_VERSION +xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 + +KDE_SESSION_UID=`id -ru` +export KDE_SESSION_UID + +XDG_CURRENT_DESKTOP=KDE +export XDG_CURRENT_DESKTOP + +# At this point all the environment is ready, let's send it to kwalletd if running +if test -n "$PAM_KWALLET_LOGIN" ; then + env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN +fi +# ...and also to kwalletd5 +if test -n "$PAM_KWALLET5_LOGIN" ; then + env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN +fi + +# At this point all environment variables are set, let's send it to the DBus session server to update the activation environment +ksyncdbusenv +if test $? -ne 0; then + # Startup error + echo 'startkde: Could not sync environment to dbus.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + xmessage -geometry 500x100 "Could not sync environment to dbus." + exit 1 +fi + +# We set LD_BIND_NOW to increase the efficiency of kdeinit. +# kdeinit unsets this variable before loading applications. +LD_BIND_NOW=true start_kdeinit_wrapper --kded +kcminit_startup +if test $? -ne 0; then + # Startup error + echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." + exit 1 +fi + +# (NixOS) Run kbuildsycoca5 before starting the user session because things +# may be missing or moved if they have run nixos-rebuild and it may not be +# possible for them to start Konsole to run it manually! +kbuildsycoca5 + +# finally, give the session control to the session manager +# see kdebase/ksmserver for the description of the rest of the startup sequence +# if the KDEWM environment variable has been set, then it will be used as KDE's +# window manager instead of kwin. +# if KDEWM is not set, ksmserver will ensure kwin is started. +# kwrapper5 is used to reduce startup time and memory usage +# kwrapper5 does not return useful error codes such as the exit code of ksmserver. +# We only check for 255 which means that the ksmserver process could not be +# started, any problems thereafter, e.g. ksmserver failing to initialize, +# will remain undetected. +test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" +# If the session should be locked from the start (locked autologin), +# lock now and do the rest of the KDE startup underneath the locker. +KSMSERVEROPTIONS="" +test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" +kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS +if test $? -eq 255; then + # Startup error + echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." +fi + +wait_drkonqi=$(kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true) + +if test x"$wait_drkonqi"x = x"true"x ; then + # wait for remaining drkonqi instances with timeout (in seconds) + wait_drkonqi_timeout=$(kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900) + wait_drkonqi_counter=0 + while qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do + sleep 5 + wait_drkonqi_counter=$((wait_drkonqi_counter+5)) + if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then + # ask remaining drkonqis to die in a graceful way + qdbus | grep 'org.kde.drkonqi-' | while read address ; do + qdbus "$address" "/MainApplication" "quit" + done + break + fi + done +fi + +echo 'startkde: Shutting down...' 1>&2 +# just in case +test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + +# Clean up +kdeinit5_shutdown + +unset KDE_FULL_SESSION +xprop -root -remove KDE_FULL_SESSION +unset KDE_SESSION_VERSION +xprop -root -remove KDE_SESSION_VERSION +unset KDE_SESSION_UID + +echo 'startkde: Done.' 1>&2 diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix new file mode 100644 index 0000000000000..a921e153dbc2d --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix @@ -0,0 +1,21 @@ +{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews +, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem +, kxmlgui, kdbusaddons, kconfig, khtml, makeQtWrapper +}: + +plasmaPackage { + name = "systemsettings"; + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + buildInputs = [ + kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons + kconfig + ]; + propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/systemsettings5" + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 81fe6bc5f96a6..1c4472ae3c914 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15592,7 +15592,7 @@ in kde5_latest = let frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.5 { inherit pkgs; }; + plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: { plasma = plasma self; -- cgit 1.4.1 From 19474a7b2a4d8379409dc34ffd926f2641af1bbe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:36:22 -0500 Subject: kde5_latest.knotifications: include optional libdbusmenu input --- pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix index 7e301dd0f2683..791caa02edb77 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix @@ -1,9 +1,7 @@ { kdeFramework, lib , extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem +, kcodecs, kconfig, kcoreaddons, kwindowsystem +, libdbusmenu , phonon , qtx11extras }: @@ -12,7 +10,7 @@ kdeFramework { name = "knotifications"; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ - kcodecs kconfig kcoreaddons phonon + kcodecs kconfig kcoreaddons libdbusmenu phonon ]; propagatedBuildInputs = [ kwindowsystem qtx11extras ]; meta = { -- cgit 1.4.1 From b61cf1694262b2c44d9d26fa3333b04e53c95d72 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:36:56 -0500 Subject: kde5_latest.libkscreen: remove patches --- pkgs/desktops/kde-5/plasma-5.6/default.nix | 2 +- pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix | 18 ++++++++++++++++++ pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix | 18 ------------------ 3 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix index a4f5c7c232042..89e822fe45f3a 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -69,7 +69,7 @@ let kwayland = callPackage ./kwayland.nix {}; kwin = callPackage ./kwin {}; kwrited = callPackage ./kwrited.nix {}; - libkscreen = callPackage ./libkscreen {}; + libkscreen = callPackage ./libkscreen.nix {}; libksysguard = callPackage ./libksysguard {}; milou = callPackage ./milou.nix {}; oxygen = callPackage ./oxygen.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix new file mode 100644 index 0000000000000..eddedf969b0e4 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix @@ -0,0 +1,18 @@ +{ plasmaPackage +, extra-cmake-modules +, kwayland, libXrandr +, qtx11extras +}: + +plasmaPackage { + name = "libkscreen"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kwayland libXrandr + ]; + propagatedBuildInputs = [ + qtx11extras + ]; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix b/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix deleted file mode 100644 index 9fccbd6834c3e..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/libkscreen/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, libXrandr -, qtx11extras -}: - -plasmaPackage { - name = "libkscreen"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - libXrandr - ]; - propagatedBuildInputs = [ - qtx11extras - ]; -} -- cgit 1.4.1 From 62945ebabad548d1b4605c0b4f02e8b8a101f27b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:37:25 -0500 Subject: kde5_latest.libksysguard: remove patch now included upstream --- pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix index 402b3ce3beee9..9c352d76156fc 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix @@ -8,11 +8,6 @@ plasmaPackage { name = "libksysguard"; patches = [ ./0001-qdiriterator-follow-symlinks.patch - (fetchpatch { # should be included on update - name = "glibc-2.23-isnan.patch"; - url = https://github.com/KDE/libksysguard/commit/b0578798eb3.patch; - sha256 = "1my5nqp58c5azyi265j261a10wh047zxakprrnpl85mlg7bwskdh"; - }) ]; nativeBuildInputs = [ extra-cmake-modules -- cgit 1.4.1 From ffc217883c5c792f2876c22e2827d480ae12f6bb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 14:38:01 -0500 Subject: kde5_latest.plasma-workspace: remove patches --- pkgs/desktops/kde-5/plasma-5.6/default.nix | 2 +- .../desktops/kde-5/plasma-5.6/plasma-workspace.nix | 43 +++ .../kde-5/plasma-5.6/plasma-workspace/default.nix | 45 --- .../plasma-workspace/qml-import-path.patch | 104 ------ .../kde-5/plasma-5.6/plasma-workspace/series | 1 - .../plasma-5.6/plasma-workspace/startkde.patch | 372 --------------------- 6 files changed, 44 insertions(+), 523 deletions(-) create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix index 89e822fe45f3a..587d2cb520aa9 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -77,7 +77,7 @@ let plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; plasma-nm = callPackage ./plasma-nm {}; plasma-pa = callPackage ./plasma-pa.nix {}; - plasma-workspace = callPackage ./plasma-workspace {}; + plasma-workspace = callPackage ./plasma-workspace.nix {}; plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; powerdevil = callPackage ./powerdevil.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix new file mode 100644 index 0000000000000..462378aae8849 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix @@ -0,0 +1,43 @@ +{ plasmaPackage, lib +, extra-cmake-modules, kdoctools +, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative +, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime +, kjsembed, knewstuff, knotifyconfig, kpackage, krunner +, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient +, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt +, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland +, libksysguard, kconfig, solid, qtquickcontrols +}: + +plasmaPackage { + name = "plasma-workspace"; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + buildInputs = [ + kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit + kjsembed knewstuff knotifyconfig kpackage + ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM + libXcursor networkmanager-qt pam phonon qtscript + wayland + ]; + propagatedBuildInputs = [ + baloo kactivities kdeclarative kdelibs4support kglobalaccel + kidletime krunner ktexteditor kwin libkscreen libksysguard + plasma-framework qtquick1 qtquickcontrols qtx11extras solid + ]; + + postPatch = '' + substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ + --replace kdostartupconfig5 $out/bin/kdostartupconfig5 + ''; + + postInstall = '' + rm "$out/bin/startkde" + rm "$out/bin/startplasmacompositor" + rm "$out/lib/libexec/startplasma" + rm -r "$out/share/wayland-sessions" + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix deleted file mode 100644 index 1a96c1eced2e0..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ plasmaPackage, lib, copyPathsToStore -, extra-cmake-modules, kdoctools -, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime -, kjsembed, knewstuff, knotifyconfig, kpackage, krunner -, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient -, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt -, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland -, libksysguard, kconfig, solid, qtquickcontrols -}: - -plasmaPackage { - name = "plasma-workspace"; - - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit - kjsembed knewstuff knotifyconfig kpackage - ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM - libXcursor networkmanager-qt pam phonon qtscript - wayland - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kdelibs4support kglobalaccel - kidletime krunner ktexteditor kwin libkscreen libksysguard - plasma-framework qtquick1 qtquickcontrols qtx11extras solid - ]; - - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - - postPatch = '' - substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 - ''; - - postInstall = '' - rm "$out/bin/startkde" - rm "$out/bin/startplasmacompositor" - rm "$out/lib/libexec/startplasma" - rm -r "$out/share/wayland-sessions" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch deleted file mode 100644 index 1d34001be597d..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch +++ /dev/null @@ -1,104 +0,0 @@ -Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml -+++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml -+++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series deleted file mode 100644 index b9081298bd693..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series +++ /dev/null @@ -1 +0,0 @@ -qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch deleted file mode 100644 index eea0ae4c199d2..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch +++ /dev/null @@ -1,372 +0,0 @@ -Index: plasma-workspace-5.5.5/startkde/startkde.cmake -=================================================================== ---- plasma-workspace-5.5.5.orig/startkde/startkde.cmake -+++ plasma-workspace-5.5.5/startkde/startkde.cmake -@@ -1,8 +1,36 @@ --#!/bin/sh -+#!@bash@ - # - # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) - # - -+set -x -+ -+# The KDE icon cache is supposed to update itself -+# automatically, but it uses the timestamp on the icon -+# theme directory as a trigger. Since in Nix the -+# timestamp is always the same, this doesn't work. So as -+# a workaround, nuke the icon cache on login. This isn't -+# perfect, since it may require logging out after -+# installing new applications to update the cache. -+# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html -+rm -fv $HOME/.cache/icon-cache.kcache -+ -+# Qt writes a weird ‘libraryPath’ line to -+# ~/.config/Trolltech.conf that causes the KDE plugin -+# paths of previous KDE invocations to be searched. -+# Obviously using mismatching KDE libraries is potentially -+# disastrous, so here we nuke references to the Nix store -+# in Trolltech.conf. A better solution would be to stop -+# Qt from doing this wackiness in the first place. -+if [ -e $HOME/.config/Trolltech.conf ]; then -+ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf -+fi -+ -+# (NixOS) We run kbuildsycoca5 before starting the user session because things -+# may be missing or moved if they have run nixos-rebuild and it may not be -+# possible for them to start Konsole to run it manually! -+@kbuildsycoca5@ -+ - if test "x$1" = x--failsafe; then - KDE_FAILSAFE=1 # General failsafe flag - KWIN_COMPOSE=N # Disable KWin's compositing -@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP - # we have to unset this for Darwin since it will screw up KDE's dynamic-loading - unset DYLD_FORCE_FLAT_NAMESPACE - --# in case we have been started with full pathname spec without being in PATH --bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` --if [ -n "$bindir" ]; then -- qbindir=`qtpaths --binaries-dir` -- qdbus=$qbindir/qdbus -- case $PATH in -- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; -- *) PATH=$bindir:$PATH; export PATH;; -- esac --else -- qdbus=qdbus --fi -- - # Check if a KDE session already is running and whether it's possible to connect to X --kcheckrunning -+@kcheckrunning@ - kcheckrunning_result=$? - if test $kcheckrunning_result -eq 0 ; then -- echo "KDE seems to be already running on this display." -- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null -+ echo "KDE seems to be already running on this display." -+ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display." - exit 1 - elif test $kcheckrunning_result -eq 2 ; then - echo "\$DISPLAY is not set or cannot connect to the X server." -- exit 1 -+ exit 1 - fi - - # Boot sequence: -@@ -57,13 +72,8 @@ fi - # * Then ksmserver is started which takes control of the rest of the startup sequence - - # We need to create config folder so we can write startupconfigkeys --if [ ${XDG_CONFIG_HOME} ]; then -- configDir=$XDG_CONFIG_HOME; --else -- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html --fi -- --mkdir -p $configDir -+configDir=$(@qtpaths@ --writable-path GenericConfigLocation) -+mkdir -p "$configDir" - - #This is basically setting defaults so we can use them with kstartupconfig5 - cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then -+ : # ok -+else -+ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -+ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -+ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -+ exit 1 -+fi -+ - ksplash_pid= - if test -z "$dl"; then - # the splashscreen and progress indicator - case "$ksplashrc_ksplash_engine" in - KSplashQML) -- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` -+ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` - ;; - None) - ;; -@@ -201,8 +199,7 @@ fi - # For anything else (that doesn't set env vars, or that needs a window manager), - # better use the Autostart folder. - --# TODO: Use GenericConfigLocation once we depend on Qt 5.4 --scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` -+scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g') - - # Add /env/ to the directory to locate the scripts to be sourced - for prefix in `echo $scriptpath`; do -@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override - usr_fdir=$HOME/.fonts - - if test -n "$KDEDIRS"; then -- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` -+ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'` - sys_odir=$kdedirs_first/share/fonts/override - sys_fdir=$kdedirs_first/share/fonts - else -@@ -245,23 +242,13 @@ fi - # add the user's dirs to the font path, as they might simply have been made - # read-only by the administrator, for whatever reason. - --test -d "$sys_odir" && xset +fp "$sys_odir" --test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") --test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") --test -d "$sys_fdir" && xset fp+ "$sys_fdir" -+test -d "$sys_odir" && @xset@ +fp "$sys_odir" -+test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" ) -+test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" ) -+test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir" - - # Ask X11 to rebuild its font list. --xset fp rehash -- --# Set a left cursor instead of the standard X11 "X" cursor, since I've heard --# from some users that they're confused and don't know what to do. This is --# especially necessary on slow machines, where starting KDE takes one or two --# minutes until anything appears on the screen. --# --# If the user has overwritten fonts, the cursor font may be different now --# so don't move this up. --# --xsetroot -cursor_name left_ptr -+@xset@ fp rehash - - # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap - if test -n "$GS_LIB" ; then -@@ -274,26 +261,6 @@ fi - - echo 'startkde: Starting up...' 1>&2 - --# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. --# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend --# to set it to a list of paths *not* including the KDE prefix if it's not /usr or --# /usr/local. --if test -z "$XDG_DATA_DIRS"; then -- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" --fi --export XDG_DATA_DIRS -- --# Make sure that D-Bus is running --if $qdbus >/dev/null 2>/dev/null; then -- : # ok --else -- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -- exit 1 --fi -- -- - # Mark that full KDE session is running (e.g. Konqueror preloading works only - # with full KDE running). The KDE_FULL_SESSION property can be detected by - # any X client connected to the same X session, even if not launched -@@ -318,11 +285,11 @@ fi - # - KDE_FULL_SESSION=true - export KDE_FULL_SESSION --xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true -+@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true - - KDE_SESSION_VERSION=5 - export KDE_SESSION_VERSION --xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 -+@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 - - KDE_SESSION_UID=`id -ru` - export KDE_SESSION_UID -@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP - - # At this point all the environment is ready, let's send it to kwalletd if running - if test -n "$PAM_KWALLET_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN - fi - # ...and also to kwalletd5 - if test -n "$PAM_KWALLET5_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN - fi - - # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -349,18 +316,18 @@ if test $? -ne 0; then - # Startup error - echo 'startkde: Could not sync environment to dbus.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not sync environment to dbus." -+ @xmessage@ -geometry 500x100 "Could not sync environment to dbus." - exit 1 - fi - - # We set LD_BIND_NOW to increase the efficiency of kdeinit. - # kdeinit unsets this variable before loading applications. --LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup -+LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup - if test $? -ne 0; then - # Startup error - echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." -+ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation." - exit 1 - fi - -@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag - # lock now and do the rest of the KDE startup underneath the locker. - KSMSERVEROPTIONS="" - test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" --kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS -+@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS - if test $? -eq 255; then - # Startup error - echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -+ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation." - fi - --wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` -+wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true` - - if test x"$wait_drkonqi"x = x"true"x ; then - # wait for remaining drkonqi instances with timeout (in seconds) -- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` -+ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900` - wait_drkonqi_counter=0 -- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do -+ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do - sleep 5 - wait_drkonqi_counter=$((wait_drkonqi_counter+5)) - if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then - # ask remaining drkonqis to die in a graceful way -- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do -- $qdbus "$address" "/MainApplication" "quit" -+ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do -+ @qdbus@ "$address" "/MainApplication" "quit" - done - break - fi -@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - - # Clean up --kdeinit5_shutdown -+@kdeinit5_shutdown@ - - unset KDE_FULL_SESSION --xprop -root -remove KDE_FULL_SESSION -+@xprop@ -root -remove KDE_FULL_SESSION - unset KDE_SESSION_VERSION --xprop -root -remove KDE_SESSION_VERSION -+@xprop@ -root -remove KDE_SESSION_VERSION - unset KDE_SESSION_UID - - echo 'startkde: Done.' 1>&2 -- cgit 1.4.1 From 99c06657dfd220722dd3f70c3afcb23fc484f894 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 15:43:22 -0500 Subject: kde5_latest.kdeplasma-addons: add plasma-workspace input --- pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix index d6a96a3276d75..128cfe34d0d79 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix @@ -1,7 +1,7 @@ { plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig , kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n , kio, knewstuff, kross, krunner, kservice, kunitconversion -, plasma-framework, qtdeclarative, qtx11extras +, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras }: plasmaPackage { @@ -15,7 +15,7 @@ plasmaPackage { knewstuff kservice kunitconversion ]; propagatedBuildInputs = [ - kdelibs4support kio kross krunner plasma-framework qtdeclarative - qtx11extras + kdelibs4support kio kross krunner plasma-framework plasma-workspace + qtdeclarative qtx11extras ]; } -- cgit 1.4.1 From 5896befee037fc570134cc75297a97fdad187fef Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 21 Apr 2016 15:59:20 -0500 Subject: nixos/kde5: install kactivitymanagerd --- nixos/modules/services/x11/desktop-managers/kde5.nix | 3 +++ pkgs/desktops/kde-5/plasma-5.6/default.nix | 1 + pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix | 14 ++++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index f5d9d8b8e0db2..c81046ac4405c 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -111,6 +111,9 @@ in # Install Breeze icons if available ++ lib.optional (lib.hasAttr "breeze-icons" kde5) kde5.breeze-icons + # Install activity manager if available + ++ lib.optional (lib.hasAttr "kactivitymanagerd" kde5) kde5.kactivitymanagerd + # Optional hardware support features ++ lib.optional config.hardware.bluetooth.enable kde5.bluedevil ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix index 587d2cb520aa9..1b777678515f8 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -53,6 +53,7 @@ let in symlinkJoin "breeze-${version}" (map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]); + kactivitymanagerd = callPackage ./kactivitymanagerd.nix {}; kde-cli-tools = callPackage ./kde-cli-tools.nix {}; kde-gtk-config = callPackage ./kde-gtk-config {}; kdecoration = callPackage ./kdecoration.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix b/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix new file mode 100644 index 0000000000000..282e58ecf9e6c --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/kactivitymanagerd.nix @@ -0,0 +1,14 @@ +{ plasmaPackage +, extra-cmake-modules +, boost, kconfig, kcoreaddons, kdbusaddons, ki18n, kio, kglobalaccel +, kwindowsystem, kxmlgui +}: + +plasmaPackage { + name = "kactivitymanagerd"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ + boost kconfig kcoreaddons kdbusaddons kglobalaccel ki18n kio kwindowsystem + kxmlgui + ]; +} -- cgit 1.4.1 From 522ed7ce76cc081d31de155813cb66efaad4e1d8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 22 Apr 2016 16:00:25 -0500 Subject: nixos/kde5: phonon-backend-gstreamer is not optional --- .../modules/services/x11/desktop-managers/kde5.nix | 32 +++++++++------------- 1 file changed, 13 insertions(+), 19 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index c81046ac4405c..f90f4dc856de5 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -102,6 +102,15 @@ in pkgs.hicolor_icon_theme kde5.kde-gtk-config + + pkgs.phonon-backend-gstreamer + pkgs.kde5.phonon-backend-gstreamer + pkgs.gst_all_1.gstreamer + pkgs.gst_all_1.gst-plugins-base + pkgs.gst_all_1.gst-plugins-good + pkgs.gst_all_1.gst-plugins-ugly + pkgs.gst_all_1.gst-plugins-bad + pkgs.gst_all_1.gst-libav # for mp3 playback ] # Plasma 5.5 and later has a Breeze GTK theme. @@ -120,19 +129,7 @@ in ++ lib.optional config.hardware.pulseaudio.enable kde5.plasma-pa ++ lib.optional config.powerManagement.enable kde5.powerdevil ++ lib.optional config.services.colord.enable kde5.colord-kde - ++ lib.optionals config.services.samba.enable [ kde5.kdenetwork-filesharing pkgs.samba ] - - ++ lib.optionals cfg.phonon.gstreamer.enable - [ - pkgs.phonon-backend-gstreamer - pkgs.kde5.phonon-backend-gstreamer - pkgs.gst_all_1.gstreamer - pkgs.gst_all_1.gst-plugins-base - pkgs.gst_all_1.gst-plugins-good - pkgs.gst_all_1.gst-plugins-ugly - pkgs.gst_all_1.gst-plugins-bad - pkgs.gst_all_1.gst-libav # for mp3 playback - ]; + ++ lib.optionals config.services.samba.enable [ kde5.kdenetwork-filesharing pkgs.samba ]; environment.pathsToLink = [ "/share" ]; @@ -141,12 +138,9 @@ in target = "X11/xkb"; }; - environment.profileRelativeEnvVars = - mkIf cfg.phonon.gstreamer.enable - { - GST_PLUGIN_SYSTEM_PATH = [ "/lib/gstreamer-0.10" ]; - GST_PLUGIN_SYSTEM_PATH_1_0 = [ "/lib/gstreamer-1.0" ]; - }; + environment.profileRelativeEnvVars = { + GST_PLUGIN_SYSTEM_PATH_1_0 = [ "/lib/gstreamer-1.0" ]; + }; # Enable GTK applications to load SVG icons environment.variables = mkIf (lib.hasAttr "breeze-icons" kde5) { -- cgit 1.4.1 From a2e40003a19de448bf0988f7c6a429a47b1fad56 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 23 Apr 2016 07:41:50 -0500 Subject: kde5_latest -> kde5 --- pkgs/desktops/kde-5/applications-15.12/ark.nix | 58 - .../kde-5/applications-15.12/baloo-widgets.nix | 35 - pkgs/desktops/kde-5/applications-15.12/default.nix | 59 - .../kde-5/applications-15.12/dolphin-plugins.nix | 31 - pkgs/desktops/kde-5/applications-15.12/dolphin.nix | 70 - .../desktops/kde-5/applications-15.12/fetchsrcs.sh | 56 - .../kde-5/applications-15.12/ffmpegthumbs.nix | 21 - .../kde-5/applications-15.12/filelight.nix | 35 - pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix | 21 - .../desktops/kde-5/applications-15.12/gwenview.nix | 44 - pkgs/desktops/kde-5/applications-15.12/kate.nix | 69 - pkgs/desktops/kde-5/applications-15.12/kcalc.nix | 39 - .../kde-5/applications-15.12/kcolorchooser.nix | 15 - pkgs/desktops/kde-5/applications-15.12/kde-app.nix | 25 - .../kde-5/applications-15.12/kde-locale-4.nix | 27 - .../kde-5/applications-15.12/kde-locale-5.nix | 24 - .../kdegraphics-thumbnailers.nix | 23 - .../kdelibs/0001-old-kde4-cmake-policies.patch | 56 - .../kdelibs/0002-polkit-install-path.patch | 25 - .../kdelibs/0003-remove_xdg_impurities.patch | 47 - .../kde-5/applications-15.12/kdelibs/default.nix | 45 - .../kde-5/applications-15.12/kdelibs/setup-hook.sh | 10 - .../applications-15.12/kdenetwork-filesharing.nix | 29 - pkgs/desktops/kde-5/applications-15.12/kgpg.nix | 38 - .../kde-5/applications-15.12/kio-extras.nix | 58 - pkgs/desktops/kde-5/applications-15.12/konsole.nix | 68 - pkgs/desktops/kde-5/applications-15.12/l10n.nix | 244 --- .../kde-5/applications-15.12/libkdcraw.nix | 19 - .../kde-5/applications-15.12/libkexiv2.nix | 19 - pkgs/desktops/kde-5/applications-15.12/libkipi.nix | 22 - pkgs/desktops/kde-5/applications-15.12/okular.nix | 41 - .../kde-5/applications-15.12/print-manager.nix | 47 - .../kde-5/applications-15.12/spectacle.nix | 46 - pkgs/desktops/kde-5/applications-15.12/srcs.nix | 1933 -------------------- pkgs/desktops/kde-5/frameworks-5.19/attica.nix | 11 - pkgs/desktops/kde-5/frameworks-5.19/baloo.nix | 25 - pkgs/desktops/kde-5/frameworks-5.19/bluez-qt.nix | 17 - .../kde-5/frameworks-5.19/breeze-icons.nix | 10 - pkgs/desktops/kde-5/frameworks-5.19/default.nix | 120 -- .../extra-cmake-modules/default.nix | 20 - .../extra-cmake-modules/nix-lib-path.patch | 37 - .../frameworks-5.19/extra-cmake-modules/series | 1 - .../extra-cmake-modules/setup-hook.sh | 80 - pkgs/desktops/kde-5/frameworks-5.19/fetchsrcs.sh | 57 - .../kde-5/frameworks-5.19/frameworkintegration.nix | 17 - .../desktops/kde-5/frameworks-5.19/kactivities.nix | 22 - pkgs/desktops/kde-5/frameworks-5.19/kapidox.nix | 12 - pkgs/desktops/kde-5/frameworks-5.19/karchive.nix | 11 - .../kauth/cmake-install-paths.patch | 17 - .../kde-5/frameworks-5.19/kauth/default.nix | 16 - .../kauth/kauth-policy-install.patch | 13 - pkgs/desktops/kde-5/frameworks-5.19/kauth/series | 1 - pkgs/desktops/kde-5/frameworks-5.19/kbookmarks.nix | 25 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-5/frameworks-5.19/kcmutils/default.nix | 17 - pkgs/desktops/kde-5/frameworks-5.19/kcodecs.nix | 11 - .../desktops/kde-5/frameworks-5.19/kcompletion.nix | 14 - pkgs/desktops/kde-5/frameworks-5.19/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../frameworks-5.19/kconfigwidgets/default.nix | 18 - .../desktops/kde-5/frameworks-5.19/kcoreaddons.nix | 16 - pkgs/desktops/kde-5/frameworks-5.19/kcrash.nix | 16 - .../desktops/kde-5/frameworks-5.19/kdbusaddons.nix | 17 - .../kde-5/frameworks-5.19/kdeclarative.nix | 22 - pkgs/desktops/kde-5/frameworks-5.19/kded.nix | 19 - .../kde-5/frameworks-5.19/kdelibs4support.nix | 32 - .../frameworks-5.19/kdelibs4support/default.nix | 36 - .../kdelibs4support/nix-kde-include-dir.patch | 13 - .../kde-5/frameworks-5.19/kdelibs4support/series | 1 - .../frameworks-5.19/kdelibs4support/setup-hook.sh | 1 - .../kde-5/frameworks-5.19/kdesignerplugin.nix | 34 - pkgs/desktops/kde-5/frameworks-5.19/kdesu.nix | 13 - pkgs/desktops/kde-5/frameworks-5.19/kdewebkit.nix | 13 - pkgs/desktops/kde-5/frameworks-5.19/kdnssd.nix | 13 - .../kde-5/frameworks-5.19/kdoctools/default.nix | 19 - .../kdoctools/kdoctools-no-find-docbook-xml.patch | 12 - .../kde-5/frameworks-5.19/kdoctools/setup-hook.sh | 5 - pkgs/desktops/kde-5/frameworks-5.19/kemoticons.nix | 17 - .../kde-5/frameworks-5.19/kfilemetadata.nix | 13 - .../kfilemetadata/cmake-install-paths.patch | 13 - .../frameworks-5.19/kfilemetadata/default.nix | 14 - .../kde-5/frameworks-5.19/kfilemetadata/series | 1 - .../kde-5/frameworks-5.19/kglobalaccel.nix | 23 - pkgs/desktops/kde-5/frameworks-5.19/kguiaddons.nix | 13 - pkgs/desktops/kde-5/frameworks-5.19/khtml.nix | 21 - pkgs/desktops/kde-5/frameworks-5.19/ki18n.nix | 17 - .../kiconthemes/default-theme-breeze.patch | 13 - .../kde-5/frameworks-5.19/kiconthemes/default.nix | 18 - .../kde-5/frameworks-5.19/kiconthemes/series | 1 - pkgs/desktops/kde-5/frameworks-5.19/kidletime.nix | 15 - .../kde-5/frameworks-5.19/kimageformats.nix | 13 - .../kde-5/frameworks-5.19/kinit/default.nix | 17 - .../frameworks-5.19/kinit/kinit-libpath.patch | 31 - pkgs/desktops/kde-5/frameworks-5.19/kinit/series | 1 - .../desktops/kde-5/frameworks-5.19/kio/default.nix | 33 - .../frameworks-5.19/kio/samba-search-path.patch | 28 - pkgs/desktops/kde-5/frameworks-5.19/kio/series | 1 - .../desktops/kde-5/frameworks-5.19/kitemmodels.nix | 11 - pkgs/desktops/kde-5/frameworks-5.19/kitemviews.nix | 11 - .../desktops/kde-5/frameworks-5.19/kjobwidgets.nix | 16 - pkgs/desktops/kde-5/frameworks-5.19/kjs.nix | 16 - pkgs/desktops/kde-5/frameworks-5.19/kjsembed.nix | 17 - .../kde-5/frameworks-5.19/kmediaplayer.nix | 15 - pkgs/desktops/kde-5/frameworks-5.19/knewstuff.nix | 17 - .../kde-5/frameworks-5.19/knotifications.nix | 21 - .../kde-5/frameworks-5.19/knotifyconfig.nix | 13 - .../kpackage/allow-external-paths.patch | 13 - .../kde-5/frameworks-5.19/kpackage/default.nix | 23 - .../kpackage/qdiriterator-follow-symlinks.patch | 26 - .../desktops/kde-5/frameworks-5.19/kpackage/series | 2 - pkgs/desktops/kde-5/frameworks-5.19/kparts.nix | 17 - pkgs/desktops/kde-5/frameworks-5.19/kpeople.nix | 15 - pkgs/desktops/kde-5/frameworks-5.19/kplotting.nix | 11 - pkgs/desktops/kde-5/frameworks-5.19/kpty.nix | 10 - pkgs/desktops/kde-5/frameworks-5.19/kross.nix | 14 - pkgs/desktops/kde-5/frameworks-5.19/krunner.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kservice/0002-no-canonicalize-path.patch | 25 - .../kde-5/frameworks-5.19/kservice/default.nix | 18 - .../kde-5/frameworks-5.19/kservice/setup-hook.sh | 43 - .../kde-5/frameworks-5.19/ktexteditor/default.nix | 22 - .../ktexteditor/no-qcoreapplication.patch | 36 - .../kde-5/frameworks-5.19/ktexteditor/series | 1 - .../kde-5/frameworks-5.19/ktextwidgets.nix | 16 - .../kde-5/frameworks-5.19/kunitconversion.nix | 10 - pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix | 21 - .../kde-5/frameworks-5.19/kwidgetsaddons.nix | 11 - .../kde-5/frameworks-5.19/kwindowsystem.nix | 13 - pkgs/desktops/kde-5/frameworks-5.19/kxmlgui.nix | 18 - .../kde-5/frameworks-5.19/kxmlrpcclient.nix | 10 - .../kde-5/frameworks-5.19/modemmanager-qt.nix | 13 - .../kde-5/frameworks-5.19/networkmanager-qt.nix | 13 - .../kde-5/frameworks-5.19/oxygen-icons5.nix | 13 - .../frameworks-5.19/plasma-framework/default.nix | 25 - pkgs/desktops/kde-5/frameworks-5.19/solid.nix | 17 - pkgs/desktops/kde-5/frameworks-5.19/sonnet.nix | 13 - pkgs/desktops/kde-5/frameworks-5.19/srcs.nix | 565 ------ .../kde-5/frameworks-5.19/threadweaver.nix | 11 - pkgs/desktops/kde-5/plasma-5.5/bluedevil.nix | 26 - pkgs/desktops/kde-5/plasma-5.5/breeze-gtk.nix | 8 - pkgs/desktops/kde-5/plasma-5.5/breeze-qt4.nix | 29 - pkgs/desktops/kde-5/plasma-5.5/breeze-qt5.nix | 23 - pkgs/desktops/kde-5/plasma-5.5/default.nix | 88 - pkgs/desktops/kde-5/plasma-5.5/fetchsrcs.sh | 57 - pkgs/desktops/kde-5/plasma-5.5/kde-cli-tools.nix | 27 - .../kde-gtk-config/0001-follow-symlinks.patch | 39 - .../kde-5/plasma-5.5/kde-gtk-config/default.nix | 28 - pkgs/desktops/kde-5/plasma-5.5/kdecoration.nix | 6 - .../desktops/kde-5/plasma-5.5/kdeplasma-addons.nix | 21 - pkgs/desktops/kde-5/plasma-5.5/kgamma5.nix | 9 - pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix | 20 - pkgs/desktops/kde-5/plasma-5.5/khotkeys.nix | 16 - pkgs/desktops/kde-5/plasma-5.5/kinfocenter.nix | 24 - pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix | 19 - pkgs/desktops/kde-5/plasma-5.5/kscreen.nix | 29 - pkgs/desktops/kde-5/plasma-5.5/kscreenlocker.nix | 19 - pkgs/desktops/kde-5/plasma-5.5/ksshaskpass.nix | 13 - pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix | 20 - pkgs/desktops/kde-5/plasma-5.5/kwayland.nix | 14 - .../kwin/0001-qdiriterator-follow-symlinks.patch | 25 - pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix | 34 - pkgs/desktops/kde-5/plasma-5.5/kwrited.nix | 10 - .../kde-5/plasma-5.5/libkscreen/default.nix | 18 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-5/plasma-5.5/libksysguard/default.nix | 28 - pkgs/desktops/kde-5/plasma-5.5/milou.nix | 17 - pkgs/desktops/kde-5/plasma-5.5/oxygen.nix | 20 - .../0001-qt-5.5-QML-import-paths.patch | 67 - .../plasma-5.5/plasma-desktop/0002-hwclock.patch | 36 - .../plasma-5.5/plasma-desktop/0003-tzdir.patch | 30 - .../kde-5/plasma-5.5/plasma-desktop/default.nix | 86 - .../kde-5/plasma-5.5/plasma-mediacenter.nix | 20 - .../0001-mobile-broadband-provider-info-path.patch | 25 - .../kde-5/plasma-5.5/plasma-nm/default.nix | 36 - pkgs/desktops/kde-5/plasma-5.5/plasma-pa.nix | 18 - .../plasma-5.5/plasma-workspace-wallpapers.nix | 10 - .../kde-5/plasma-5.5/plasma-workspace/default.nix | 45 - .../plasma-workspace/qml-import-path.patch | 104 -- .../kde-5/plasma-5.5/plasma-workspace/series | 1 - .../plasma-5.5/plasma-workspace/startkde.patch | 372 ---- .../desktops/kde-5/plasma-5.5/polkit-kde-agent.nix | 31 - pkgs/desktops/kde-5/plasma-5.5/powerdevil.nix | 20 - pkgs/desktops/kde-5/plasma-5.5/setup-hook.sh | 1 - pkgs/desktops/kde-5/plasma-5.5/srcs.nix | 309 ---- .../desktops/kde-5/plasma-5.5/startkde/default.nix | 32 - .../desktops/kde-5/plasma-5.5/startkde/startkde.sh | 334 ---- pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix | 21 - pkgs/top-level/all-packages.nix | 16 - 188 files changed, 8171 deletions(-) delete mode 100644 pkgs/desktops/kde-5/applications-15.12/ark.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/baloo-widgets.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/default.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/dolphin-plugins.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/dolphin.nix delete mode 100755 pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh delete mode 100644 pkgs/desktops/kde-5/applications-15.12/ffmpegthumbs.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/filelight.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/gwenview.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kate.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kcalc.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kde-app.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdegraphics-thumbnailers.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdelibs/0001-old-kde4-cmake-policies.patch delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdelibs/0002-polkit-install-path.patch delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdelibs/0003-remove_xdg_impurities.patch delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdelibs/setup-hook.sh delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kdenetwork-filesharing.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kgpg.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/kio-extras.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/konsole.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/l10n.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/libkdcraw.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/libkexiv2.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/libkipi.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/okular.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/print-manager.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/spectacle.nix delete mode 100644 pkgs/desktops/kde-5/applications-15.12/srcs.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/attica.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/baloo.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/bluez-qt.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh delete mode 100755 pkgs/desktops/kde-5/frameworks-5.19/fetchsrcs.sh delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/frameworkintegration.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kactivities.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kapidox.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/karchive.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kauth/kauth-policy-install.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kauth/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kbookmarks.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcmutils/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcodecs.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcompletion.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kconfig.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kcrash.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdbusaddons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdeclarative.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kded.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdesignerplugin.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdesu.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdewebkit.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdnssd.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdoctools/setup-hook.sh delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kemoticons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kglobalaccel.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kguiaddons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/khtml.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/ki18n.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default-theme-breeze.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kidletime.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kimageformats.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kinit/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kio/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kio/samba-search-path.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kio/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kitemmodels.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kitemviews.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kjobwidgets.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kjs.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kjsembed.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kmediaplayer.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/knewstuff.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/knotifications.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/knotifyconfig.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpackage/allow-external-paths.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpackage/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpackage/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kparts.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpeople.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kplotting.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kpty.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kross.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/krunner.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kservice/0002-no-canonicalize-path.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kservice/setup-hook.sh delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/no-qcoreapplication.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/ktextwidgets.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kunitconversion.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kwidgetsaddons.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kwindowsystem.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kxmlgui.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kxmlrpcclient.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/modemmanager-qt.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/networkmanager-qt.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/oxygen-icons5.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/plasma-framework/default.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/solid.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/sonnet.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/srcs.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/threadweaver.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/bluedevil.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/breeze-gtk.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/breeze-qt4.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/breeze-qt5.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/default.nix delete mode 100755 pkgs/desktops/kde-5/plasma-5.5/fetchsrcs.sh delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kde-cli-tools.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/0001-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kdecoration.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kdeplasma-addons.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kgamma5.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/khotkeys.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kinfocenter.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kscreen.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kscreenlocker.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/ksshaskpass.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kwayland.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kwin/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/kwrited.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/libkscreen/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/libksysguard/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/libksysguard/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/milou.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/oxygen.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0001-qt-5.5-QML-import-paths.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0002-hwclock.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0003-tzdir.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-nm/0001-mobile-broadband-provider-info-path.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-nm/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-pa.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-workspace-wallpapers.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/qml-import-path.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/polkit-kde-agent.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/powerdevil.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/setup-hook.sh delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/srcs.nix delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix delete mode 100755 pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh delete mode 100644 pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix diff --git a/pkgs/desktops/kde-5/applications-15.12/ark.nix b/pkgs/desktops/kde-5/applications-15.12/ark.nix deleted file mode 100644 index 9e6f414db9e29..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/ark.nix +++ /dev/null @@ -1,58 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, karchive -, kconfig -, kcrash -, kdbusaddons -, ki18n -, kiconthemes -, khtml -, kio -, kservice -, kpty -, kwidgetsaddons -, libarchive -, p7zip -, unrar -, unzipNLS -, zip -}: - -let PATH = lib.makeBinPath [ - p7zip unrar unzipNLS zip - ]; -in - -kdeApp { - name = "ark"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - karchive - kconfig - kcrash - kdbusaddons - kiconthemes - kservice - kpty - kwidgetsaddons - libarchive - ]; - propagatedBuildInputs = [ - khtml - ki18n - kio - ]; - postInstall = '' - wrapQtProgram "$out/bin/ark" \ - --prefix PATH : "${PATH}" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/baloo-widgets.nix b/pkgs/desktops/kde-5/applications-15.12/baloo-widgets.nix deleted file mode 100644 index a24928160df17..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/baloo-widgets.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kconfig -, kio -, ki18n -, kservice -, kfilemetadata -, baloo -, kdelibs4support -}: - -kdeApp { - name = "baloo-widgets"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig - kservice - ]; - propagatedBuildInputs = [ - baloo - kdelibs4support - kfilemetadata - ki18n - kio - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/default.nix b/pkgs/desktops/kde-5/applications-15.12/default.nix deleted file mode 100644 index f9d65ac6d87d0..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/default.nix +++ /dev/null @@ -1,59 +0,0 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./manifest.sh to point to the updated URL. Upstream sometimes -# releases updates that include only the changed packages; in this case, -# multiple URLs can be provided and the results will be merged. -# 2. Run ./manifest.sh and ./dependencies.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - packages = self: with self; { - - kdeApp = import ./kde-app.nix { - inherit stdenv lib; - inherit debug srcs; - }; - - kdelibs = callPackage ./kdelibs { inherit (pkgs) attica phonon; }; - - ark = callPackage ./ark.nix {}; - baloo-widgets = callPackage ./baloo-widgets.nix {}; - dolphin = callPackage ./dolphin.nix {}; - dolphin-plugins = callPackage ./dolphin-plugins.nix {}; - ffmpegthumbs = callPackage ./ffmpegthumbs.nix {}; - filelight = callPackage ./filelight.nix {}; - gpgmepp = callPackage ./gpgmepp.nix {}; - gwenview = callPackage ./gwenview.nix {}; - kate = callPackage ./kate.nix {}; - kcalc = callPackage ./kcalc.nix {}; - kcolorchooser = callPackage ./kcolorchooser.nix {}; - kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {}; - kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {}; - kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; - kio-extras = callPackage ./kio-extras.nix {}; - konsole = callPackage ./konsole.nix {}; - libkdcraw = callPackage ./libkdcraw.nix {}; - libkexiv2 = callPackage ./libkexiv2.nix {}; - libkipi = callPackage ./libkipi.nix {}; - okular = callPackage ./okular.nix {}; - print-manager = callPackage ./print-manager.nix {}; - spectacle = callPackage ./spectacle.nix {}; - - l10n = pkgs.recurseIntoAttrs (import ./l10n.nix { inherit callPackage lib pkgs; }); - }; - -in packages diff --git a/pkgs/desktops/kde-5/applications-15.12/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications-15.12/dolphin-plugins.nix deleted file mode 100644 index 72a08c7326143..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/dolphin-plugins.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kxmlgui -, ki18n -, kio -, kdelibs4support -, dolphin -}: - -kdeApp { - name = "dolphin-plugins"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kxmlgui - dolphin - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kio - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/dolphin.nix b/pkgs/desktops/kde-5/applications-15.12/dolphin.nix deleted file mode 100644 index 3218146f510e9..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/dolphin.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, kinit -, kcmutils -, kcoreaddons -, knewstuff -, ki18n -, kdbusaddons -, kbookmarks -, kconfig -, kio -, kparts -, solid -, kiconthemes -, kcompletion -, ktexteditor -, kwindowsystem -, knotifications -, kactivities -, phonon -, baloo -, baloo-widgets -, kfilemetadata -, kdelibs4support -}: - -kdeApp { - name = "dolphin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kinit - kcmutils - kcoreaddons - knewstuff - kdbusaddons - kbookmarks - kconfig - kparts - solid - kiconthemes - kcompletion - knotifications - phonon - baloo-widgets - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kfilemetadata - ki18n - kio - ktexteditor - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/dolphin" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh b/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh deleted file mode 100755 index ff118a53e3abd..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh +++ /dev/null @@ -1,56 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/stable/applications/15.12.3/ -A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/desktops/kde-5/applications-15.12/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications-15.12/ffmpegthumbs.nix deleted file mode 100644 index 53e9d807d647a..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/ffmpegthumbs.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, ffmpeg -, kio -}: - -kdeApp { - name = "ffmpegthumbs"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - ffmpeg - kio - ]; - meta = { - license = with lib.licenses; [ gpl2 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/filelight.nix b/pkgs/desktops/kde-5/applications-15.12/filelight.nix deleted file mode 100644 index df5e097a540e0..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/filelight.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, qtscript -, kio -, solid -, kxmlgui -, kparts -}: - -kdeApp { - name = "filelight"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kio - kparts - qtscript - solid - kxmlgui - ]; - - postInstall = '' - wrapQtProgram "$out/bin/filelight" - ''; - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ fridh vcunat ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix b/pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix deleted file mode 100644 index ac14573dcaa3f..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/gpgmepp.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, boost -, gpgme -}: - -kdeApp { - name = "gpgmepp"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - boost - gpgme - ]; - meta = { - license = with lib.licenses; [ lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/gwenview.nix b/pkgs/desktops/kde-5/applications-15.12/gwenview.nix deleted file mode 100644 index 732ac11e96d0e..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/gwenview.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, baloo -, exiv2 -, kactivities -, kdelibs4support -, kio -, lcms2 -, phonon -, qtsvg -, qtx11extras -}: - -kdeApp { - name = "gwenview"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - exiv2 - lcms2 - phonon - qtsvg - ]; - propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kio - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/gwenview" - ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kate.nix b/pkgs/desktops/kde-5/applications-15.12/kate.nix deleted file mode 100644 index 91eeb2314a4c4..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kate.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, qtscript -, kactivities -, kconfig -, kcrash -, kguiaddons -, kiconthemes -, ki18n -, kinit -, kjobwidgets -, kio -, kparts -, ktexteditor -, kwindowsystem -, kxmlgui -, kdbusaddons -, kwallet -, plasma-framework -, kitemmodels -, knotifications -, threadweaver -, knewstuff -, libgit2 -}: - -kdeApp { - name = "kate"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - qtscript - kconfig - kcrash - kguiaddons - kiconthemes - kinit - kjobwidgets - kparts - kxmlgui - kdbusaddons - kwallet - kitemmodels - knotifications - threadweaver - knewstuff - libgit2 - ]; - propagatedBuildInputs = [ - kactivities - ki18n - kio - ktexteditor - kwindowsystem - plasma-framework - ]; - postInstall = '' - wrapQtProgram "$out/bin/kate" - wrapQtProgram "$out/bin/kwrite" - ''; - meta = { - license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kcalc.nix b/pkgs/desktops/kde-5/applications-15.12/kcalc.nix deleted file mode 100644 index e4c8e9d69253d..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kcalc.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ kdeApp -, lib -, makeQtWrapper -, extra-cmake-modules -, gmp -, kdoctools -, kconfig -, kconfigwidgets -, kguiaddons -, kinit -, knotifications -}: - -kdeApp { - name = "kcalc"; - - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - - buildInputs = [ - gmp - kconfig - kconfigwidgets - kguiaddons - kinit - knotifications - ]; - - postInstall = '' - wrapQtProgram "$out/bin/kcalc" - ''; - - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.fridh ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix b/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix deleted file mode 100644 index e8eac273cb55c..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeApp, lib -, automoc4, cmake, kdelibs -}: - -kdeApp { - name = "kcolorchooser"; - - nativeBuildInputs = [ automoc4 cmake ]; - buildInputs = [ kdelibs ]; - - meta = { - license = with lib.licenses; [ mit ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-app.nix b/pkgs/desktops/kde-5/applications-15.12/kde-app.nix deleted file mode 100644 index 2f1fdc1d643c5..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kde-app.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ stdenv, lib, debug, srcs }: - -args: - -let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; -in -stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - outputs = args.outputs or [ "dev" "out" ]; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); -}) diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix b/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix deleted file mode 100644 index e83794c60d818..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix +++ /dev/null @@ -1,27 +0,0 @@ -name: args: - -{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt4"; - - outputs = [ "out" ]; - - nativeBuildInputs = - [ automoc4 cmake gettext perl ] - ++ (args.nativeBuildInputs or []); - buildInputs = - [ kdelibs ] - ++ (args.buildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; - - preFixup = '' - propagatedBuildInputs= - propagatedNativeBuildInputs= - ''; -}) diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix b/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix deleted file mode 100644 index 772ebe37e44f1..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix +++ /dev/null @@ -1,24 +0,0 @@ -name: args: - -{ kdeApp, cmake, extra-cmake-modules, gettext, kdoctools }: - -kdeApp (args // { - sname = "kde-l10n-${name}"; - name = "kde-l10n-${name}-qt5"; - - outputs = [ "out" ]; - - nativeBuildInputs = - [ cmake extra-cmake-modules gettext kdoctools ] - ++ (args.nativeBuildInputs or []); - - preConfigure = '' - sed -e 's/add_subdirectory(4)//' -i CMakeLists.txt - ${args.preConfigure or ""} - ''; - - preFixup = '' - propagatedBuildInputs= - propagatedNativeBuildInputs= - ''; -}) diff --git a/pkgs/desktops/kde-5/applications-15.12/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications-15.12/kdegraphics-thumbnailers.nix deleted file mode 100644 index 520bad0d066a4..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdegraphics-thumbnailers.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kio -, libkexiv2 -, libkdcraw -}: - -kdeApp { - name = "kdegraphics-thumbnailers"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kio - libkexiv2 - libkdcraw - ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0001-old-kde4-cmake-policies.patch b/pkgs/desktops/kde-5/applications-15.12/kdelibs/0001-old-kde4-cmake-policies.patch deleted file mode 100644 index b7d7300e9a84d..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0001-old-kde4-cmake-policies.patch +++ /dev/null @@ -1,56 +0,0 @@ -From b43c49109694940f0a26240753e879eb629dd02d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 7 Sep 2015 13:54:57 -0500 -Subject: [PATCH 1/2] old kde4 cmake policies - ---- - cmake/modules/FindKDE4Internal.cmake | 33 +++++++++++++++++++++++++++++++++ - 1 file changed, 33 insertions(+) - -diff --git a/cmake/modules/FindKDE4Internal.cmake b/cmake/modules/FindKDE4Internal.cmake -index 7d54b9b..c435571 100644 ---- a/cmake/modules/FindKDE4Internal.cmake -+++ b/cmake/modules/FindKDE4Internal.cmake -@@ -345,6 +345,39 @@ - # Redistribution and use is allowed according to the terms of the BSD license. - # For details see the accompanying COPYING-CMAKE-SCRIPTS file. - -+# this is required now by cmake 2.6 and so must not be skipped by if(KDE4_FOUND) below -+cmake_minimum_required(VERSION 2.8.9 FATAL_ERROR) -+# set the cmake policies to the 2.4.x compatibility settings (may change for KDE 4.3) -+cmake_policy(VERSION 2.4.5) -+ -+# CMake 2.6, set compatibility behaviour to cmake 2.4 -+# this must be executed always, because the CMAKE_MINIMUM_REQUIRED() command above -+# resets the policy settings, so we get a lot of warnings -+ -+# CMP0000: don't require cmake_minimum_version() directly in the top level CMakeLists.txt, FindKDE4Internal.cmake is good enough -+cmake_policy(SET CMP0000 OLD) -+# CMP0002: in KDE4 we have multiple targets with the same name for the unit tests -+cmake_policy(SET CMP0002 OLD) -+# CMP0003: add the link paths to the link command as with cmake 2.4 -+cmake_policy(SET CMP0003 OLD) -+# CMP0005: keep escaping behaviour for definitions added via add_definitions() -+cmake_policy(SET CMP0005 OLD) -+# since cmake 2.6.3: NEW behaviour is that setting policies doesn't "escape" the file -+# where this is done, macros and functions are executed with the policies as they -+# were when the were defined. Keep the OLD behaviour so we can set the policies here -+# for all KDE software without the big warning -+cmake_policy(SET CMP0011 OLD) -+ -+# since cmake 2.8.4: when include()ing from inside cmake's module dir, prefer the files -+# in this directory over those from CMAKE_MODULE_PATH -+cmake_policy(SET CMP0017 NEW) -+ -+# since cmake 3.0: use of the LOCATION target property is disallowed while it is used in KDE4Macros.cmake -+if (POLICY CMP0026) -+ cmake_policy(SET CMP0026 OLD) -+endif (POLICY CMP0026) -+ -+ - # Only do something if it hasn't been found yet - if(NOT KDE4_FOUND) - --- -2.5.0 - diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0002-polkit-install-path.patch b/pkgs/desktops/kde-5/applications-15.12/kdelibs/0002-polkit-install-path.patch deleted file mode 100644 index ff0306ea1488b..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0002-polkit-install-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From fab35bac146a817f3af80f45531355fd70cd226b Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 7 Sep 2015 13:56:03 -0500 -Subject: [PATCH 2/2] polkit install path - ---- - kdecore/auth/ConfigureChecks.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/kdecore/auth/ConfigureChecks.cmake b/kdecore/auth/ConfigureChecks.cmake -index 7cf9cb5..c8334ae 100644 ---- a/kdecore/auth/ConfigureChecks.cmake -+++ b/kdecore/auth/ConfigureChecks.cmake -@@ -150,7 +150,7 @@ elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "POLKITQT-1") - ${CMAKE_INSTALL_PREFIX} _KDE4_AUTH_POLICY_FILES_INSTALL_DIR - ${POLKITQT-1_POLICY_FILES_INSTALL_DIR}) - -- set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR ${_KDE4_AUTH_POLICY_FILES_INSTALL_DIR} CACHE STRING -+ set(KDE4_AUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions" CACHE STRING - "Where policy files generated by KAuth will be installed" FORCE) - elseif(KDE4_AUTH_BACKEND_NAME STREQUAL "FAKE") - set (KAUTH_COMPILING_FAKE_BACKEND TRUE) --- -2.5.0 - diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0003-remove_xdg_impurities.patch b/pkgs/desktops/kde-5/applications-15.12/kdelibs/0003-remove_xdg_impurities.patch deleted file mode 100644 index a79d7b2b7d168..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/0003-remove_xdg_impurities.patch +++ /dev/null @@ -1,47 +0,0 @@ -diff --git a/kdecore/kernel/kstandarddirs.cpp b/kdecore/kernel/kstandarddirs.cpp -index ab8f76d..2ae5089 100644 ---- a/kdecore/kernel/kstandarddirs.cpp -+++ b/kdecore/kernel/kstandarddirs.cpp -@@ -1768,12 +1768,6 @@ void KStandardDirs::addKDEDefaults() - else - { - xdgdirList.clear(); -- xdgdirList.append(QString::fromLatin1("/etc/xdg")); --#ifdef Q_WS_WIN -- xdgdirList.append(installPath("kdedir") + QString::fromLatin1("etc/xdg")); --#else -- xdgdirList.append(QFile::decodeName(KDESYSCONFDIR "/xdg")); --#endif - } - - QString localXdgDir = readEnvPath("XDG_CONFIG_HOME"); -@@ -1821,10 +1815,6 @@ void KStandardDirs::addKDEDefaults() - } - } else { - xdgdirList = kdedirDataDirs; --#ifndef Q_WS_WIN -- xdgdirList.append(QString::fromLatin1("/usr/local/share/")); -- xdgdirList.append(QString::fromLatin1("/usr/share/")); --#endif - } - - localXdgDir = readEnvPath("XDG_DATA_HOME"); -diff --git a/solid/solid/xdgbasedirs.cpp b/solid/solid/xdgbasedirs.cpp -index 4c9cad9..6849d45 100644 ---- a/solid/solid/xdgbasedirs.cpp -+++ b/solid/solid/xdgbasedirs.cpp -@@ -70,12 +70,12 @@ QStringList Solid::XdgBaseDirs::systemPathList( const char *resource ) - { - if ( qstrncmp( "data", resource, 4 ) == 0 ) { - if ( instance()->mDataDirs.isEmpty() ) { -- instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "/usr/local/share:/usr/share" ); -+ instance()->mDataDirs = instance()->systemPathList( "XDG_DATA_DIRS", "" ); - } - return instance()->mDataDirs; - } else if ( qstrncmp( "config", resource, 6 ) == 0 ) { - if ( instance()->mConfigDirs.isEmpty() ) { -- instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "/etc/xdg" ); -+ instance()->mConfigDirs = instance()->systemPathList( "XDG_CONFIG_DIRS", "" ); - } - return instance()->mConfigDirs; - } diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix b/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix deleted file mode 100644 index 389362deecc61..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ kdeApp, attica, attr, automoc4, avahi, bison, cmake -, docbook_xml_dtd_42, docbook_xsl, flex, giflib, ilmbase -, libdbusmenu_qt, libjpeg, libxml2, libxslt, perl, phonon, pkgconfig -, polkit_qt4, qca2, qt4, shared_desktop_ontologies, shared_mime_info -, soprano, strigi, udev, xz, pcre -, lib -}: - -kdeApp { - name = "kdelibs"; - - outputs = [ "out" ]; - - buildInputs = [ - attica attr avahi giflib libdbusmenu_qt libjpeg libxml2 - polkit_qt4 qca2 shared_desktop_ontologies udev xz pcre - ]; - propagatedBuildInputs = [ qt4 soprano phonon strigi ]; - nativeBuildInputs = [ - automoc4 bison cmake flex libxslt perl pkgconfig shared_mime_info - ]; - - patches = [ - ./0001-old-kde4-cmake-policies.patch - ./0002-polkit-install-path.patch - ./0003-remove_xdg_impurities.patch - ]; - - # cmake does not detect path to `ilmbase` - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - - cmakeFlags = [ - "-DDOCBOOKXML_CURRENTDTD_DIR=${docbook_xml_dtd_42}/xml/dtd/docbook" - "-DDOCBOOKXSL_DIR=${docbook_xsl}/xml/xsl/docbook" - "-DWITH_SOLID_UDISKS2=ON" - "-DKDE_DEFAULT_HOME=.kde" - ]; - - setupHook = ./setup-hook.sh; - - meta = { - licenses = with lib.licenses; [ gpl2 fdl12 lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/setup-hook.sh b/pkgs/desktops/kde-5/applications-15.12/kdelibs/setup-hook.sh deleted file mode 100644 index e0a75dc8acd0d..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/setup-hook.sh +++ /dev/null @@ -1,10 +0,0 @@ -addQt4Plugins() { - if [[ -d "$1/lib/qt4/plugins" ]]; then - propagatedUserEnvPkgs+=" $1" - fi - - if [[ -d "$1/lib/kde4/plugins" ]]; then - propagatedUserEnvPkgs+=" $1" - fi -} -envHooks+=(addQt4Plugins) diff --git a/pkgs/desktops/kde-5/applications-15.12/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications-15.12/kdenetwork-filesharing.nix deleted file mode 100644 index 4e99a43b3913a..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kdenetwork-filesharing.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, kcoreaddons -, ki18n -, kio -, kwidgetsaddons -, samba -}: - -kdeApp { - name = "kdenetwork-filesharing"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kcoreaddons - ki18n - kio - kwidgetsaddons - samba - ]; - meta = { - license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kgpg.nix b/pkgs/desktops/kde-5/applications-15.12/kgpg.nix deleted file mode 100644 index 3ee925197189e..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kgpg.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, makeWrapper -, perl -, pkgconfig -, boost -, gpgme -, kdelibs -, kdepimlibs -, gnupg -}: - -kdeApp { - name = "kgpg"; - nativeBuildInputs = [ - automoc4 - cmake - makeWrapper - perl - pkgconfig - ]; - buildInputs = [ - boost - gpgme - kdelibs - kdepimlibs - ]; - postInstall = '' - wrapProgram "$out/bin/kgpg" \ - --prefix PATH : "${gnupg}/bin" - ''; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/kio-extras.nix b/pkgs/desktops/kde-5/applications-15.12/kio-extras.nix deleted file mode 100644 index 77b42f1fc5862..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/kio-extras.nix +++ /dev/null @@ -1,58 +0,0 @@ -{ kdeApp, lib -, extra-cmake-modules, kdoctools -, shared_mime_info -, exiv2 -, karchive -, kbookmarks -, kconfig, kconfigwidgets -, kcoreaddons, kdbusaddons, kguiaddons -, kdnssd -, kiconthemes -, ki18n -, kio -, khtml -, kdelibs4support -, kpty -, libmtp -, libssh -, openexr -, openslp -, phonon -, qtsvg -, samba -, solid -}: - -kdeApp { - name = "kio-extras"; - nativeBuildInputs = [ - extra-cmake-modules kdoctools - shared_mime_info - ]; - buildInputs = [ - exiv2 - karchive - kbookmarks - kconfig kconfigwidgets - kcoreaddons kdbusaddons kguiaddons - kdnssd - kiconthemes - ki18n - kio - khtml - kdelibs4support - kpty - libmtp - libssh - openexr - openslp - phonon - qtsvg - samba - solid - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/konsole.nix b/pkgs/desktops/kde-5/applications-15.12/konsole.nix deleted file mode 100644 index 4b4cba2a37795..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/konsole.nix +++ /dev/null @@ -1,68 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, qtscript -, kbookmarks -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kguiaddons -, ki18n -, kiconthemes -, kinit -, kdelibs4support -, kio -, knotifications -, knotifyconfig -, kparts -, kpty -, kservice -, ktextwidgets -, kwidgetsaddons -, kwindowsystem -, kxmlgui -}: - -kdeApp { - name = "konsole"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - qtscript - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kguiaddons - kiconthemes - kinit - kio - knotifications - knotifyconfig - kparts - kpty - kservice - ktextwidgets - kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support - ki18n - kwindowsystem - ]; - postInstall = '' - wrapQtProgram "$out/bin/konsole" - ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/l10n.nix b/pkgs/desktops/kde-5/applications-15.12/l10n.nix deleted file mode 100644 index 9b211faf44488..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/l10n.nix +++ /dev/null @@ -1,244 +0,0 @@ -{ callPackage, pkgs, lib }: - -let - - kdeLocale4 = import ./kde-locale-4.nix; - kdeLocale5 = import ./kde-locale-5.nix; - -in - -lib.mapAttrs (name: attr: pkgs.recurseIntoAttrs attr) { - ar = { - qt4 = callPackage (kdeLocale4 "ar" {}) {}; - qt5 = callPackage (kdeLocale5 "ar" {}) {}; - }; - bg = { - qt4 = callPackage (kdeLocale4 "bg" {}) {}; - qt5 = callPackage (kdeLocale5 "bg" {}) {}; - }; - bs = { - qt4 = callPackage (kdeLocale4 "bs" {}) {}; - qt5 = callPackage (kdeLocale5 "bs" {}) {}; - }; - ca = { - qt4 = callPackage (kdeLocale4 "ca" {}) {}; - qt5 = callPackage (kdeLocale5 "ca" {}) {}; - }; - ca_valencia = { - qt4 = callPackage (kdeLocale4 "ca_valencia" {}) {}; - qt5 = callPackage (kdeLocale5 "ca_valencia" {}) {}; - }; - cs = { - qt4 = callPackage (kdeLocale4 "cs" {}) {}; - qt5 = callPackage (kdeLocale5 "cs" {}) {}; - }; - da = { - qt4 = callPackage (kdeLocale4 "da" {}) {}; - qt5 = callPackage (kdeLocale5 "da" {}) {}; - }; - de = { - qt4 = callPackage (kdeLocale4 "de" {}) {}; - qt5 = callPackage (kdeLocale5 "de" {}) {}; - }; - el = { - qt4 = callPackage (kdeLocale4 "el" {}) {}; - qt5 = callPackage (kdeLocale5 "el" {}) {}; - }; - en_GB = { - qt4 = callPackage (kdeLocale4 "en_GB" {}) {}; - qt5 = callPackage (kdeLocale5 "en_GB" {}) {}; - }; - eo = { - qt4 = callPackage (kdeLocale4 "eo" {}) {}; - qt5 = callPackage (kdeLocale5 "eo" {}) {}; - }; - es = { - qt4 = callPackage (kdeLocale4 "es" {}) {}; - qt5 = callPackage (kdeLocale5 "es" {}) {}; - }; - et = { - qt4 = callPackage (kdeLocale4 "et" {}) {}; - qt5 = callPackage (kdeLocale5 "et" {}) {}; - }; - eu = { - qt4 = callPackage (kdeLocale4 "eu" {}) {}; - qt5 = callPackage (kdeLocale5 "eu" {}) {}; - }; - fa = { - qt4 = callPackage (kdeLocale4 "fa" {}) {}; - qt5 = callPackage (kdeLocale5 "fa" {}) {}; - }; - fi = { - qt4 = callPackage (kdeLocale4 "fi" {}) {}; - qt5 = callPackage (kdeLocale5 "fi" {}) {}; - }; - fr = { - qt4 = callPackage (kdeLocale4 "fr" {}) {}; - qt5 = callPackage (kdeLocale5 "fr" {}) {}; - }; - ga = { - qt4 = callPackage (kdeLocale4 "ga" {}) {}; - qt5 = callPackage (kdeLocale5 "ga" {}) {}; - }; - gl = { - qt4 = callPackage (kdeLocale4 "gl" {}) {}; - qt5 = callPackage (kdeLocale5 "gl" {}) {}; - }; - he = { - qt4 = callPackage (kdeLocale4 "he" {}) {}; - qt5 = callPackage (kdeLocale5 "he" {}) {}; - }; - hi = { - qt4 = callPackage (kdeLocale4 "hi" {}) {}; - qt5 = callPackage (kdeLocale5 "hi" {}) {}; - }; - hr = { - qt4 = callPackage (kdeLocale4 "hr" {}) {}; - qt5 = callPackage (kdeLocale5 "hr" {}) {}; - }; - hu = { - qt4 = callPackage (kdeLocale4 "hu" {}) {}; - qt5 = callPackage (kdeLocale5 "hu" {}) {}; - }; - ia = { - qt4 = callPackage (kdeLocale4 "ia" {}) {}; - qt5 = callPackage (kdeLocale5 "ia" {}) {}; - }; - id = { - qt4 = callPackage (kdeLocale4 "id" {}) {}; - qt5 = callPackage (kdeLocale5 "id" {}) {}; - }; - is = { - qt4 = callPackage (kdeLocale4 "is" {}) {}; - qt5 = callPackage (kdeLocale5 "is" {}) {}; - }; - it = { - qt4 = callPackage (kdeLocale4 "it" {}) {}; - qt5 = callPackage (kdeLocale5 "it" {}) {}; - }; - ja = { - qt4 = callPackage (kdeLocale4 "ja" {}) {}; - qt5 = callPackage (kdeLocale5 "ja" {}) {}; - }; - kk = { - qt4 = callPackage (kdeLocale4 "kk" {}) {}; - qt5 = callPackage (kdeLocale5 "kk" {}) {}; - }; - km = { - qt4 = callPackage (kdeLocale4 "km" {}) {}; - qt5 = callPackage (kdeLocale5 "km" {}) {}; - }; - ko = { - qt4 = callPackage (kdeLocale4 "ko" {}) {}; - qt5 = callPackage (kdeLocale5 "ko" {}) {}; - }; - lt = { - qt4 = callPackage (kdeLocale4 "lt" {}) {}; - qt5 = callPackage (kdeLocale5 "lt" {}) {}; - }; - lv = { - qt4 = callPackage (kdeLocale4 "lv" {}) {}; - qt5 = callPackage (kdeLocale5 "lv" {}) {}; - }; - mr = { - qt4 = callPackage (kdeLocale4 "mr" {}) {}; - qt5 = callPackage (kdeLocale5 "mr" {}) {}; - }; - nb = { - qt4 = callPackage (kdeLocale4 "nb" {}) {}; - qt5 = callPackage (kdeLocale5 "nb" {}) {}; - }; - nds = { - qt4 = callPackage (kdeLocale4 "nds" {}) {}; - qt5 = callPackage (kdeLocale5 "nds" {}) {}; - }; - nl = { - qt4 = callPackage (kdeLocale4 "nl" {}) {}; - qt5 = callPackage (kdeLocale5 "nl" {}) {}; - }; - nn = { - qt4 = callPackage (kdeLocale4 "nn" {}) {}; - qt5 = callPackage (kdeLocale5 "nn" {}) {}; - }; - pa = { - qt4 = callPackage (kdeLocale4 "pa" {}) {}; - qt5 = callPackage (kdeLocale5 "pa" {}) {}; - }; - pl = { - qt4 = callPackage (kdeLocale4 "pl" {}) {}; - qt5 = callPackage (kdeLocale5 "pl" {}) {}; - }; - pt = { - qt4 = callPackage (kdeLocale4 "pt" {}) {}; - qt5 = callPackage (kdeLocale5 "pt" {}) {}; - }; - pt_BR = { - qt4 = callPackage (kdeLocale4 "pt_BR" {}) {}; - qt5 = callPackage (kdeLocale5 "pt_BR" {}) {}; - }; - ro = { - qt4 = callPackage (kdeLocale4 "ro" {}) {}; - qt5 = callPackage (kdeLocale5 "ro" {}) {}; - }; - ru = { - qt4 = callPackage (kdeLocale4 "ru" {}) {}; - qt5 = callPackage (kdeLocale5 "ru" {}) {}; - }; - sk = { - qt4 = callPackage (kdeLocale4 "sk" {}) {}; - qt5 = callPackage (kdeLocale5 "sk" {}) {}; - }; - sl = { - qt4 = callPackage (kdeLocale4 "sl" {}) {}; - qt5 = callPackage (kdeLocale5 "sl" {}) {}; - }; - sr = { - qt4 = callPackage (kdeLocale4 "sr" { - preConfigure = '' - patchShebangs \ - 4/sr/sr@latin/scripts/ts-pmap-compile.py \ - 4/sr/scripts/ts-pmap-compile.py \ - 4/sr/data/resolve-sr-hybrid \ - 4/sr/sr@ijekavian/scripts/ts-pmap-compile.py \ - 4/sr/sr@ijekavianlatin/scripts/ts-pmap-compile.py - ''; - }) {}; - qt5 = callPackage (kdeLocale5 "sr" { - preConfigure = '' - patchShebangs 5/sr/data/resolve-sr-hybrid - sed -e 's/add_subdirectory(kdesdk)//' -i 5/sr/data/CMakeLists.txt - ''; - }) {}; - }; - sv = { - qt4 = callPackage (kdeLocale4 "sv" {}) {}; - qt5 = callPackage (kdeLocale5 "sv" {}) {}; - }; - tr = { - qt4 = callPackage (kdeLocale4 "tr" {}) {}; - qt5 = callPackage (kdeLocale5 "tr" {}) {}; - }; - ug = { - qt4 = callPackage (kdeLocale4 "ug" {}) {}; - qt5 = callPackage (kdeLocale5 "ug" {}) {}; - }; - # TODO: build broken in 15.11.80; re-enable in next release - /* - uk = { - qt4 = callPackage (kdeLocale4 "uk" {}) {}; - qt5 = callPackage (kdeLocale5 "uk" {}) {}; - }; - */ - wa = { - qt4 = callPackage (kdeLocale4 "wa" {}) {}; - qt5 = callPackage (kdeLocale5 "wa" {}) {}; - }; - zh_CN = { - qt4 = callPackage (kdeLocale4 "zh_CN" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_CN" {}) {}; - }; - zh_TW = { - qt4 = callPackage (kdeLocale4 "zh_TW" {}) {}; - qt5 = callPackage (kdeLocale5 "zh_TW" {}) {}; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/libkdcraw.nix b/pkgs/desktops/kde-5/applications-15.12/libkdcraw.nix deleted file mode 100644 index 319c7fc6583d7..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/libkdcraw.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, libraw -}: - -kdeApp { - name = "libkdcraw"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - libraw - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/libkexiv2.nix b/pkgs/desktops/kde-5/applications-15.12/libkexiv2.nix deleted file mode 100644 index afb1ac8365378..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/libkexiv2.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeApp -, lib -, exiv2 -, extra-cmake-modules -}: - -kdeApp { - name = "libkexiv2"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - exiv2 - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/libkipi.nix b/pkgs/desktops/kde-5/applications-15.12/libkipi.nix deleted file mode 100644 index c23cd8578fb96..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/libkipi.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, kconfig -, ki18n -, kservice -, kxmlgui -}: - -kdeApp { - name = "libkipi"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kconfig ki18n kservice kxmlgui - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/okular.nix b/pkgs/desktops/kde-5/applications-15.12/okular.nix deleted file mode 100644 index 0691325d7a52c..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/okular.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ kdeApp -, lib -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qimageblitz -, poppler_qt4 -, libspectre -, libkexiv2 -, djvulibre -, libtiff -, freetype -, ebook_tools -}: - -kdeApp { - name = "okular"; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - buildInputs = [ - kdelibs - qimageblitz - poppler_qt4 - libspectre - libkexiv2 - djvulibre - libtiff - freetype - ebook_tools - ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/print-manager.nix b/pkgs/desktops/kde-5/applications-15.12/print-manager.nix deleted file mode 100644 index b4eab372789d6..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/print-manager.nix +++ /dev/null @@ -1,47 +0,0 @@ -{ kdeApp -, lib -, extra-cmake-modules -, qtdeclarative -, cups -, kconfig -, kconfigwidgets -, kdbusaddons -, kiconthemes -, ki18n -, kcmutils -, kio -, knotifications -, plasma-framework -, kwidgetsaddons -, kwindowsystem -, kitemviews -}: - -kdeApp { - name = "print-manager"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - cups - kconfig - kconfigwidgets - kdbusaddons - kiconthemes - kcmutils - knotifications - kwidgetsaddons - kitemviews - ]; - propagatedBuildInputs = [ - ki18n - kio - kwindowsystem - plasma-framework - qtdeclarative - ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/spectacle.nix b/pkgs/desktops/kde-5/applications-15.12/spectacle.nix deleted file mode 100644 index 849334fb73643..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/spectacle.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ kdeApp, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -, kconfig -, kcoreaddons -, kdbusaddons -, ki18n -, kio -, knotifications -, kscreen -, kwidgetsaddons -, kwindowsystem -, kxmlgui -, libkipi -, xcb-util-cursor -}: - -kdeApp { - name = "spectacle"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig - kcoreaddons - kdbusaddons - ki18n - kio - knotifications - kscreen - kwidgetsaddons - kwindowsystem - kxmlgui - libkipi - xcb-util-cursor - ]; - postFixup = '' - wrapQtProgram "$out/bin/spectacle" - ''; - meta = with lib; { - maintainers = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/applications-15.12/srcs.nix b/pkgs/desktops/kde-5/applications-15.12/srcs.nix deleted file mode 100644 index 7db99c26c3c80..0000000000000 --- a/pkgs/desktops/kde-5/applications-15.12/srcs.nix +++ /dev/null @@ -1,1933 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - akonadi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/akonadi-15.12.3.tar.xz"; - sha256 = "17qzwsf8x95jm5swbxx5692i5yzwzqylnqrdbx2bflaaw7i2k3by"; - name = "akonadi-15.12.3.tar.xz"; - }; - }; - akonadi-calendar = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/akonadi-calendar-15.12.3.tar.xz"; - sha256 = "15algxz73wi143b93yps7dlbac0dp9isaxlf0h9xv1cia8s98a17"; - name = "akonadi-calendar-15.12.3.tar.xz"; - }; - }; - akonadi-search = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/akonadi-search-15.12.3.tar.xz"; - sha256 = "0dxr8rppaf0vnfmcys5hp6h936lim3s8f1ykhrygrvjr3va0fw3f"; - name = "akonadi-search-15.12.3.tar.xz"; - }; - }; - analitza = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/analitza-15.12.3.tar.xz"; - sha256 = "0hz59vfzh4kysrchafiaa3l8lw2zv0nky1dyi9ybzqwi5ilxcs9b"; - name = "analitza-15.12.3.tar.xz"; - }; - }; - ark = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ark-15.12.3.tar.xz"; - sha256 = "13pl4phk7zg19gc16x1faaycgipdd85xg2s7rj6silmvyxr47kzf"; - name = "ark-15.12.3.tar.xz"; - }; - }; - artikulate = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/artikulate-15.12.3.tar.xz"; - sha256 = "00dhgpkzjdqjag6k2m2d8l8pp40grzhqhvvivxzy6lcz67yr68m1"; - name = "artikulate-15.12.3.tar.xz"; - }; - }; - audiocd-kio = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/audiocd-kio-15.12.3.tar.xz"; - sha256 = "0ibasnpjqbfhxgkfar88pzmywcnnjpamkkd2arzwgdmrv311f4rj"; - name = "audiocd-kio-15.12.3.tar.xz"; - }; - }; - baloo-widgets = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/baloo-widgets-15.12.3.tar.xz"; - sha256 = "19yxc4njgnxyqd7izjkf93mml0wnnl23w58pv44w23a10jihydrg"; - name = "baloo-widgets-15.12.3.tar.xz"; - }; - }; - blinken = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/blinken-15.12.3.tar.xz"; - sha256 = "04jkf6gh676ghf6mhgn3pyv2vl6dypja3bxjc2np1j7j44575jx1"; - name = "blinken-15.12.3.tar.xz"; - }; - }; - bomber = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/bomber-15.12.3.tar.xz"; - sha256 = "03ydvhdcbgvalkn3ch512s7z7hn2ykamjilbs7iv6p9q21va6iws"; - name = "bomber-15.12.3.tar.xz"; - }; - }; - bovo = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/bovo-15.12.3.tar.xz"; - sha256 = "086nxgdl37jgmi5x759ln7ai4nxv6mahzhlkf3m8m3faa6hxm2af"; - name = "bovo-15.12.3.tar.xz"; - }; - }; - cantor = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/cantor-15.12.3.tar.xz"; - sha256 = "0fs2zsd8aq5q0l5d2p8343af6cbi4qvi603gvrcjyyyc728djrqc"; - name = "cantor-15.12.3.tar.xz"; - }; - }; - cervisia = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/cervisia-15.12.3.tar.xz"; - sha256 = "04gs4yjjdn0ndqfcpr7ww3qwn80929g4ylilznhpp6xp35gb5dsa"; - name = "cervisia-15.12.3.tar.xz"; - }; - }; - dolphin = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/dolphin-15.12.3.tar.xz"; - sha256 = "1pdxsf8n5kys7zwlhr71mwj4scwk8qglqml65cb3bijyysxlghr6"; - name = "dolphin-15.12.3.tar.xz"; - }; - }; - dolphin-plugins = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/dolphin-plugins-15.12.3.tar.xz"; - sha256 = "179c1k6xd1f1mjrdgx23jfhgn3y72qqwmpnx8pyw83gc8rcjgrzz"; - name = "dolphin-plugins-15.12.3.tar.xz"; - }; - }; - dragon = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/dragon-15.12.3.tar.xz"; - sha256 = "0hkm0w85w5bc1pfmbaz64kxcplpm9459ggpv9gfabgg3ydy3k8l7"; - name = "dragon-15.12.3.tar.xz"; - }; - }; - ffmpegthumbs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ffmpegthumbs-15.12.3.tar.xz"; - sha256 = "1wkxz3xhmfafq52ws9i8401s0nacdh896xfin86ypfqb6dk94119"; - name = "ffmpegthumbs-15.12.3.tar.xz"; - }; - }; - filelight = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/filelight-15.12.3.tar.xz"; - sha256 = "1s31q8x2yywi2v8kql7zw5yz9r05v1509334kwlyyfz63zz54kgm"; - name = "filelight-15.12.3.tar.xz"; - }; - }; - gpgmepp = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/gpgmepp-15.12.3.tar.xz"; - sha256 = "1vrr3i5d9nfyvn5v1hn6rxi3hkw4gi1bj7plnd4fhbl3s4nfhlsp"; - name = "gpgmepp-15.12.3.tar.xz"; - }; - }; - granatier = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/granatier-15.12.3.tar.xz"; - sha256 = "1mjwgw4laxlkpy7zjd0jj7i2nq9mqpzzz048fw0swkndbh1ykrnc"; - name = "granatier-15.12.3.tar.xz"; - }; - }; - gwenview = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/gwenview-15.12.3.tar.xz"; - sha256 = "11wia3ljhwxfqbakiavi9b0h59fa2l5i1skgkbpnnglafj6j9dn9"; - name = "gwenview-15.12.3.tar.xz"; - }; - }; - jovie = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/jovie-15.12.3.tar.xz"; - sha256 = "07rmig3zfxhipf817gvphc68gm9zkliiwznw06z76zlpavcmmlgp"; - name = "jovie-15.12.3.tar.xz"; - }; - }; - juk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/juk-15.12.3.tar.xz"; - sha256 = "1nbjv5vdxb3n5m213s7srfxh38y7bavvib9v4maabg84q84c4531"; - name = "juk-15.12.3.tar.xz"; - }; - }; - kaccessible = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kaccessible-15.12.3.tar.xz"; - sha256 = "0pg7jc7y6c8x246qyn0f9qdl38cg055bj4cfvnlp9bqkq69r4mw4"; - name = "kaccessible-15.12.3.tar.xz"; - }; - }; - kaccounts-integration = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kaccounts-integration-15.12.3.tar.xz"; - sha256 = "0l3x3fgj7wvhlzx73qi0qb8yhk305yw71jrv8x4vvaagw0ffmkb9"; - name = "kaccounts-integration-15.12.3.tar.xz"; - }; - }; - kaccounts-providers = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kaccounts-providers-15.12.3.tar.xz"; - sha256 = "0lmsv1296zgcrzlsidfwv4wlc6vdiaznbaw45xzfy6ki6yfldwc9"; - name = "kaccounts-providers-15.12.3.tar.xz"; - }; - }; - kajongg = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kajongg-15.12.3.tar.xz"; - sha256 = "13r7mgdmcv3ywn6ni7l1y9g021jrqga1lc9q4i4h4pi4ymc8vqn3"; - name = "kajongg-15.12.3.tar.xz"; - }; - }; - kalarmcal = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kalarmcal-15.12.3.tar.xz"; - sha256 = "15cby2615r420zzfx7h2fpb0vsmnrbrr1l62arx2vswpb694d0hi"; - name = "kalarmcal-15.12.3.tar.xz"; - }; - }; - kalgebra = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kalgebra-15.12.3.tar.xz"; - sha256 = "0da88b30yi0f5h2alysmd1z94bzb9006zbh7939sx1v4fwg8nvha"; - name = "kalgebra-15.12.3.tar.xz"; - }; - }; - kalzium = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kalzium-15.12.3.tar.xz"; - sha256 = "0lrca50kczjynhn7c9b2sls6pjr7f86k69yq7b7krf3xk59a1hm1"; - name = "kalzium-15.12.3.tar.xz"; - }; - }; - kamera = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kamera-15.12.3.tar.xz"; - sha256 = "1azzvdj0gmafjkq7w19ns1mxjm240p0yx7cpq9dqhz0hhyl63666"; - name = "kamera-15.12.3.tar.xz"; - }; - }; - kanagram = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kanagram-15.12.3.tar.xz"; - sha256 = "1adhc1f4hdrgc780v1yadhjpb1dbydwh1xzvgwpd953df7pfxzzj"; - name = "kanagram-15.12.3.tar.xz"; - }; - }; - kapman = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kapman-15.12.3.tar.xz"; - sha256 = "0iks3c18dqxds55fmf0fi93lbh14mfdhjh82xx4hc1fn9j8xhfw5"; - name = "kapman-15.12.3.tar.xz"; - }; - }; - kapptemplate = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kapptemplate-15.12.3.tar.xz"; - sha256 = "1d1z6j5w80cjs8ls6c44sn0wwa1z4nly9gkk6qr47j8265a1rqnx"; - name = "kapptemplate-15.12.3.tar.xz"; - }; - }; - kate = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kate-15.12.3.tar.xz"; - sha256 = "1yxqs6j41cpx4zws5hfs7j01gqn47b6inddifbwglrp5w9j33wpv"; - name = "kate-15.12.3.tar.xz"; - }; - }; - katomic = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/katomic-15.12.3.tar.xz"; - sha256 = "0ydflzaxfxbk4yb26j4yziywr72dijva5g3xi9car3b0hckvqpf0"; - name = "katomic-15.12.3.tar.xz"; - }; - }; - kblackbox = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kblackbox-15.12.3.tar.xz"; - sha256 = "1yzw61b62plad78wchids243x4lb5bzla3zrlmi3lv5q3g7imz0f"; - name = "kblackbox-15.12.3.tar.xz"; - }; - }; - kblocks = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kblocks-15.12.3.tar.xz"; - sha256 = "0hgmm4gyysn9k031im3xk7aiawavv4920y8xd44scxlcwxfid8cw"; - name = "kblocks-15.12.3.tar.xz"; - }; - }; - kblog = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kblog-15.12.3.tar.xz"; - sha256 = "01z3n0lzg9d6ygqn87yvi8wg6yyg5b8jhf96ywcmb5zzacamb2hq"; - name = "kblog-15.12.3.tar.xz"; - }; - }; - kbounce = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kbounce-15.12.3.tar.xz"; - sha256 = "1gbks7hyis7czvvvqb53qwfkbzmlwg85d51m5mg1m54qixq4blq9"; - name = "kbounce-15.12.3.tar.xz"; - }; - }; - kbreakout = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kbreakout-15.12.3.tar.xz"; - sha256 = "01d7i3ga4sdgvvyl4s77i9x15f80nbh3kcqmwmrj511icvynzkl8"; - name = "kbreakout-15.12.3.tar.xz"; - }; - }; - kbruch = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kbruch-15.12.3.tar.xz"; - sha256 = "1y4dipifj3dz78y6h7852840msg80iwix427l6wxb8ybyzhapmz1"; - name = "kbruch-15.12.3.tar.xz"; - }; - }; - kcachegrind = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcachegrind-15.12.3.tar.xz"; - sha256 = "0zprqhzqlhgvw3fyvqs4cdkmxgibw8l8i15ng6badnmdyi5dkz29"; - name = "kcachegrind-15.12.3.tar.xz"; - }; - }; - kcalc = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcalc-15.12.3.tar.xz"; - sha256 = "00138746j1j92dkc22c680wi9qqc891040d2b0i5fi1hp1a3z2r4"; - name = "kcalc-15.12.3.tar.xz"; - }; - }; - kcalcore = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcalcore-15.12.3.tar.xz"; - sha256 = "1zdkqxli6gr65947xgwsbyl84ar0px6flbky0zjy1i4h9jiysfan"; - name = "kcalcore-15.12.3.tar.xz"; - }; - }; - kcalutils = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcalutils-15.12.3.tar.xz"; - sha256 = "0l65bc71i734j700akkr1ksjv5q09f7v2dfqcnciabqiphchr5cd"; - name = "kcalutils-15.12.3.tar.xz"; - }; - }; - kcharselect = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcharselect-15.12.3.tar.xz"; - sha256 = "0ahk95k0vssk7kdsdddz1s1n3hzy4049s0dq4j5kiill3j5z47ba"; - name = "kcharselect-15.12.3.tar.xz"; - }; - }; - kcolorchooser = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcolorchooser-15.12.3.tar.xz"; - sha256 = "0paki5clb420w8fhx9y9cyxrf86nz1bp5w6jgkyk5fqdw69d77wk"; - name = "kcolorchooser-15.12.3.tar.xz"; - }; - }; - kcontacts = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcontacts-15.12.3.tar.xz"; - sha256 = "0xavlrf2zxvizv1w620w2wp46qx1267df7qilmws50qmyzdzd8pz"; - name = "kcontacts-15.12.3.tar.xz"; - }; - }; - kcron = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kcron-15.12.3.tar.xz"; - sha256 = "1dwcqng0128n2d9lk059b94vzyn98xm0yx34wp5qibqg8c7a2z0z"; - name = "kcron-15.12.3.tar.xz"; - }; - }; - kde-baseapps = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-baseapps-15.12.3.tar.xz"; - sha256 = "1rqdbv5lhy7k8i4csp1lqvril7df12lz9vvjqnq7ccbbn67yjcfk"; - name = "kde-baseapps-15.12.3.tar.xz"; - }; - }; - kdebugsettings = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdebugsettings-15.12.3.tar.xz"; - sha256 = "1ik2j2i9k3rcfznwia9fxbivsva2ngb31wzrdciircl6i55k4sdd"; - name = "kdebugsettings-15.12.3.tar.xz"; - }; - }; - kde-dev-scripts = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-dev-scripts-15.12.3.tar.xz"; - sha256 = "0cvcd2yv0xkk0q6zhpyqv0bjnpy6s09aw3kjjyyq5ddai5m5hp4q"; - name = "kde-dev-scripts-15.12.3.tar.xz"; - }; - }; - kde-dev-utils = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-dev-utils-15.12.3.tar.xz"; - sha256 = "1k0d7z7rm6dgzy56dggxjwzzhz9ar2wfmvjs257l6lbjxxxry2gc"; - name = "kde-dev-utils-15.12.3.tar.xz"; - }; - }; - kdeedu-data = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdeedu-data-15.12.3.tar.xz"; - sha256 = "18jssqnkjxxz98rmzd4gv0ix1zbb60qv22k150lqp32kckmgkn0y"; - name = "kdeedu-data-15.12.3.tar.xz"; - }; - }; - kdegraphics-mobipocket = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-mobipocket-15.12.3.tar.xz"; - sha256 = "05fhnh2qs1mgz1hfdvqb5dfd4h2vsz00hb2vl902qprnsjlpc6fb"; - name = "kdegraphics-mobipocket-15.12.3.tar.xz"; - }; - }; - kdegraphics-strigi-analyzer = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-strigi-analyzer-15.12.3.tar.xz"; - sha256 = "1bfxmv9pxxd5w2ppm673sdg459w04493p7lp8rwd3n7aa5dhw5fp"; - name = "kdegraphics-strigi-analyzer-15.12.3.tar.xz"; - }; - }; - kdegraphics-thumbnailers = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-thumbnailers-15.12.3.tar.xz"; - sha256 = "1limkjpdd8n8hcj3ysr3zwa0fyydfjb1m5rl9lwb9mb08bl5qg70"; - name = "kdegraphics-thumbnailers-15.12.3.tar.xz"; - }; - }; - kde-l10n-ar = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ar-15.12.3.tar.xz"; - sha256 = "1s1xi98zk277rkfiip568712yammb30ld828rspxrl51ysqaj6gs"; - name = "kde-l10n-ar-15.12.3.tar.xz"; - }; - }; - kde-l10n-bg = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-bg-15.12.3.tar.xz"; - sha256 = "19yz3x4f2mkqfpa37gzgkqmmka1xs5fnr54w7w0lz7scmi3pfqyp"; - name = "kde-l10n-bg-15.12.3.tar.xz"; - }; - }; - kde-l10n-bs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-bs-15.12.3.tar.xz"; - sha256 = "1k8kawr0psvlg6cgryqwwjb59g209bz08n8h7jg5h6vkb784v3bb"; - name = "kde-l10n-bs-15.12.3.tar.xz"; - }; - }; - kde-l10n-ca = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ca-15.12.3.tar.xz"; - sha256 = "0hf6cml2hw5mj5iwa5cbp56a6ns3qzy21c0c167p6yp2i6kshzcb"; - name = "kde-l10n-ca-15.12.3.tar.xz"; - }; - }; - kde-l10n-ca_valencia = { - version = "ca_valencia-15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ca@valencia-15.12.3.tar.xz"; - sha256 = "0ibamck48cklkx6pjvcyw9bjfwnzib82822pagwrzgrr3g51djgf"; - name = "kde-l10n-ca_valencia-15.12.3.tar.xz"; - }; - }; - kde-l10n-cs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-cs-15.12.3.tar.xz"; - sha256 = "1vp1aisfp0qw94w1kn66sxa79askj8yqn70adhf6q37rc8x3hz6z"; - name = "kde-l10n-cs-15.12.3.tar.xz"; - }; - }; - kde-l10n-da = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-da-15.12.3.tar.xz"; - sha256 = "0z7p992xinf0hw646mp5bgi93890kivs8kn407m1m4m0334m687c"; - name = "kde-l10n-da-15.12.3.tar.xz"; - }; - }; - kde-l10n-de = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-de-15.12.3.tar.xz"; - sha256 = "0f2z6qpv6qzajmh91skqbx6vn14ih74r3yzavj9xwzw940apiw34"; - name = "kde-l10n-de-15.12.3.tar.xz"; - }; - }; - kde-l10n-el = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-el-15.12.3.tar.xz"; - sha256 = "0pdx8zlv2vv33iq2581yl67c3ly37s7hhg3m9lnnlm3wnybj658r"; - name = "kde-l10n-el-15.12.3.tar.xz"; - }; - }; - kde-l10n-en_GB = { - version = "en_GB-15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-en_GB-15.12.3.tar.xz"; - sha256 = "041hwzh05ryqkzll6klva9cq7n0mcyqi8b7pgx0argkc68mn123y"; - name = "kde-l10n-en_GB-15.12.3.tar.xz"; - }; - }; - kde-l10n-eo = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-eo-15.12.3.tar.xz"; - sha256 = "1nrrk5a9m15xyj97shpxwnw4vjnafmwh25mq8906z150mr8fy4na"; - name = "kde-l10n-eo-15.12.3.tar.xz"; - }; - }; - kde-l10n-es = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-es-15.12.3.tar.xz"; - sha256 = "0bhws59jd9vbfdy7kv8d7gpsg5a39z4jkypd3pyqk98v0ahxlj5p"; - name = "kde-l10n-es-15.12.3.tar.xz"; - }; - }; - kde-l10n-et = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-et-15.12.3.tar.xz"; - sha256 = "0lafw4b9qdfy091w5dvhp9idn29p7in05p8jlvpa39v2cxmp271q"; - name = "kde-l10n-et-15.12.3.tar.xz"; - }; - }; - kde-l10n-eu = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-eu-15.12.3.tar.xz"; - sha256 = "0p7lrd3k3mjxnhk4mr1p6znjp8j14xr93lg83s3v90w4vd34frsz"; - name = "kde-l10n-eu-15.12.3.tar.xz"; - }; - }; - kde-l10n-fa = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fa-15.12.3.tar.xz"; - sha256 = "0gzx0bz9gv4kwd89ryny9qf4d7fjvicai54ryk3z3qibs3sy3g66"; - name = "kde-l10n-fa-15.12.3.tar.xz"; - }; - }; - kde-l10n-fi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fi-15.12.3.tar.xz"; - sha256 = "1nh79mkcn5la6wnbpclcbcg6gia6srcv87462wax4sbhmz7b3gh8"; - name = "kde-l10n-fi-15.12.3.tar.xz"; - }; - }; - kde-l10n-fr = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fr-15.12.3.tar.xz"; - sha256 = "1gwwc596p6mqjbjlhcz57hkc30slb5r3qgmnm5x68jlp4glhyyfm"; - name = "kde-l10n-fr-15.12.3.tar.xz"; - }; - }; - kde-l10n-ga = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ga-15.12.3.tar.xz"; - sha256 = "134r2i4f6j2db24rlc2y50da98spjwv5crd3yw27k4m2whw28g1q"; - name = "kde-l10n-ga-15.12.3.tar.xz"; - }; - }; - kde-l10n-gl = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-gl-15.12.3.tar.xz"; - sha256 = "1bpki1gk1gc5rqrrwkhil44mxmh76v5fygwvvlglk7rwyxkm0bfn"; - name = "kde-l10n-gl-15.12.3.tar.xz"; - }; - }; - kde-l10n-he = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-he-15.12.3.tar.xz"; - sha256 = "12da700i3dbim64f5ybgfp5s8rky8s9828qklsnvrw6gj9i1qdh8"; - name = "kde-l10n-he-15.12.3.tar.xz"; - }; - }; - kde-l10n-hi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hi-15.12.3.tar.xz"; - sha256 = "0r5z5652j52j16gdb08z1wnfa8vr871f7msip2xikmfm3kcgiwki"; - name = "kde-l10n-hi-15.12.3.tar.xz"; - }; - }; - kde-l10n-hr = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hr-15.12.3.tar.xz"; - sha256 = "1mz95pqd3pslg1f5cl1n8s35j19wijhhqpa64m6ahjm82p3dfqiz"; - name = "kde-l10n-hr-15.12.3.tar.xz"; - }; - }; - kde-l10n-hu = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hu-15.12.3.tar.xz"; - sha256 = "0gz3lvzpf58j0jdzmjg16nkz3078gjzlfwbanx5w6f4dfqp9ha4q"; - name = "kde-l10n-hu-15.12.3.tar.xz"; - }; - }; - kde-l10n-ia = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ia-15.12.3.tar.xz"; - sha256 = "0flv662j20sqfd0cgy2p6wr2fk41sq47sxf2gkbmhr7n7n6an1fr"; - name = "kde-l10n-ia-15.12.3.tar.xz"; - }; - }; - kde-l10n-id = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-id-15.12.3.tar.xz"; - sha256 = "07r4y1hnqz3xb649gvp818alwzyci8657fi4f3lpj8z54dngddx0"; - name = "kde-l10n-id-15.12.3.tar.xz"; - }; - }; - kde-l10n-is = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-is-15.12.3.tar.xz"; - sha256 = "14xs3n9468l4qgw5bpm57k4xmh37ixjr3sq370fbfmbrifrydrsb"; - name = "kde-l10n-is-15.12.3.tar.xz"; - }; - }; - kde-l10n-it = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-it-15.12.3.tar.xz"; - sha256 = "0arvj4ms0qc283i1xqdmh6x8qjgjfsld57y341xk55b1birq87dp"; - name = "kde-l10n-it-15.12.3.tar.xz"; - }; - }; - kde-l10n-ja = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ja-15.12.3.tar.xz"; - sha256 = "1fby4r9aam0f31xlp00lmnhi156wfb3rbvwffvhm9qwam3gnypv2"; - name = "kde-l10n-ja-15.12.3.tar.xz"; - }; - }; - kde-l10n-kk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-kk-15.12.3.tar.xz"; - sha256 = "04yf8m84ywf6bzq3dfxxxcgz2syy4i72q5xjq3sba76p1w9wz8hf"; - name = "kde-l10n-kk-15.12.3.tar.xz"; - }; - }; - kde-l10n-km = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-km-15.12.3.tar.xz"; - sha256 = "0q70agf08ln5xfg4hc0rw39qiq4mn0jq418d8f53qkdjvrj07hs2"; - name = "kde-l10n-km-15.12.3.tar.xz"; - }; - }; - kde-l10n-ko = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ko-15.12.3.tar.xz"; - sha256 = "0545nv721g2xlljv1jbq42j9b6g2l19yclv0lmy07dp0fx0ms2kc"; - name = "kde-l10n-ko-15.12.3.tar.xz"; - }; - }; - kde-l10n-lt = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-lt-15.12.3.tar.xz"; - sha256 = "0sc9g2iya3k4pzwmlcjlyvf25dag9z2ckbk2gz0fzzrwgvn61875"; - name = "kde-l10n-lt-15.12.3.tar.xz"; - }; - }; - kde-l10n-lv = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-lv-15.12.3.tar.xz"; - sha256 = "0mllwxbcvfgvmxcv23azchkvirlamgh16hzi5575qd8mprxxayjx"; - name = "kde-l10n-lv-15.12.3.tar.xz"; - }; - }; - kde-l10n-mr = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-mr-15.12.3.tar.xz"; - sha256 = "1sg9s1d6yg6pjjqp986lixg5w8g3y9a0hi15iyv6iww2iwab821w"; - name = "kde-l10n-mr-15.12.3.tar.xz"; - }; - }; - kde-l10n-nb = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nb-15.12.3.tar.xz"; - sha256 = "0841zkw34afiq7kpl65mjxl66fvb7pbc2m5c7cbbpykb92hqy4gw"; - name = "kde-l10n-nb-15.12.3.tar.xz"; - }; - }; - kde-l10n-nds = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nds-15.12.3.tar.xz"; - sha256 = "1y0svbp1fgr6azfqpicvfxz1bbfkkn27l91rl8mhpaqz79zmdsjz"; - name = "kde-l10n-nds-15.12.3.tar.xz"; - }; - }; - kde-l10n-nl = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nl-15.12.3.tar.xz"; - sha256 = "0l2l0hypza8hrrz86pahvkn4qdwg1bzdsv4mk0w3f8anlfv5nlhy"; - name = "kde-l10n-nl-15.12.3.tar.xz"; - }; - }; - kde-l10n-nn = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nn-15.12.3.tar.xz"; - sha256 = "1ryqkbjrc9fam4wlpfx3af5mppajcpf4qj6ghh16y2vjpxmy6226"; - name = "kde-l10n-nn-15.12.3.tar.xz"; - }; - }; - kde-l10n-pa = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pa-15.12.3.tar.xz"; - sha256 = "0dq0sv7yh8xkk5g005q8mh6c5drzp2alday28lz2i4a2wi6m1pbn"; - name = "kde-l10n-pa-15.12.3.tar.xz"; - }; - }; - kde-l10n-pl = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pl-15.12.3.tar.xz"; - sha256 = "186lb0ydgcgwmpjasdjnj1i6cn43m1l26lvh7c97kqmh0k7ixwbl"; - name = "kde-l10n-pl-15.12.3.tar.xz"; - }; - }; - kde-l10n-pt = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pt-15.12.3.tar.xz"; - sha256 = "1s71gn3xb98y5s6ly9qfjh51afk8w8ml3xqiri3vi1c7li3v6kas"; - name = "kde-l10n-pt-15.12.3.tar.xz"; - }; - }; - kde-l10n-pt_BR = { - version = "pt_BR-15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pt_BR-15.12.3.tar.xz"; - sha256 = "1iq83ycsilracwa1cml7dliy6vsf7frk4k0rzawnprygnf89iavr"; - name = "kde-l10n-pt_BR-15.12.3.tar.xz"; - }; - }; - kde-l10n-ro = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ro-15.12.3.tar.xz"; - sha256 = "1i4kmxjc9mr8ybg4gnbhdanp7s5illknaxh0av8v45an7j051vjd"; - name = "kde-l10n-ro-15.12.3.tar.xz"; - }; - }; - kde-l10n-ru = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ru-15.12.3.tar.xz"; - sha256 = "1xbd5nvyf6ckdry0c5d52s3qrnqbnmndbnbxz7ayqllz6b61vmp0"; - name = "kde-l10n-ru-15.12.3.tar.xz"; - }; - }; - kde-l10n-sk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sk-15.12.3.tar.xz"; - sha256 = "03i2ngldf35ix4pgyv6pjjzfg4i330dmyml9rd9v6cspm0vpq7r2"; - name = "kde-l10n-sk-15.12.3.tar.xz"; - }; - }; - kde-l10n-sl = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sl-15.12.3.tar.xz"; - sha256 = "08cp9dzvii5afjck3wx05q7mjwsd10g1yg2bsxw4qldjzad31xhq"; - name = "kde-l10n-sl-15.12.3.tar.xz"; - }; - }; - kde-l10n-sr = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sr-15.12.3.tar.xz"; - sha256 = "0j8gfj1qx10yllj5vq85h4pw2l8hq1kimgm315v4wwyr4jyf4vi7"; - name = "kde-l10n-sr-15.12.3.tar.xz"; - }; - }; - kde-l10n-sv = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sv-15.12.3.tar.xz"; - sha256 = "0ijyxzm7akcpkf5vwppay063vkbn6rz8irc4yi9flc5mm1rpmb64"; - name = "kde-l10n-sv-15.12.3.tar.xz"; - }; - }; - kde-l10n-tr = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-tr-15.12.3.tar.xz"; - sha256 = "1yyz8zf10jn8v5vz2h08m88l12gz95hsdvld4h8imbqc4b8ih9xh"; - name = "kde-l10n-tr-15.12.3.tar.xz"; - }; - }; - kde-l10n-ug = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ug-15.12.3.tar.xz"; - sha256 = "0db4pf7j6m376irsby31qz42z4d0m45i1zhqmn5mplrq8hi3sy5n"; - name = "kde-l10n-ug-15.12.3.tar.xz"; - }; - }; - kde-l10n-uk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-uk-15.12.3.tar.xz"; - sha256 = "0xsn75g7dw8p0gxfmk2xkr6cix5wvglj2hhbbcqdzixm0bnshiwj"; - name = "kde-l10n-uk-15.12.3.tar.xz"; - }; - }; - kde-l10n-wa = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-wa-15.12.3.tar.xz"; - sha256 = "1zx5k0hnh17015c1jcf3hgbi3abnsrdr5zl9m06lvsccl32rcgla"; - name = "kde-l10n-wa-15.12.3.tar.xz"; - }; - }; - kde-l10n-zh_CN = { - version = "zh_CN-15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-zh_CN-15.12.3.tar.xz"; - sha256 = "0lfm6q4xk5c5rywivhg6dbs5dczddixz4jjfdz5gb2xmnv5ns9z7"; - name = "kde-l10n-zh_CN-15.12.3.tar.xz"; - }; - }; - kde-l10n-zh_TW = { - version = "zh_TW-15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-zh_TW-15.12.3.tar.xz"; - sha256 = "1s0gp678sq6zxk9gkzhmkx1c0nxzx0n08pszv737a76lnnzg0fb0"; - name = "kde-l10n-zh_TW-15.12.3.tar.xz"; - }; - }; - kdelibs = { - version = "4.14.18"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdelibs-4.14.18.tar.xz"; - sha256 = "0qyfsci3z4vm79c5xkdk45qlh63as1iyfdgk3iny6q9c5wwqd3kp"; - name = "kdelibs-4.14.18.tar.xz"; - }; - }; - kdenetwork-filesharing = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdenetwork-filesharing-15.12.3.tar.xz"; - sha256 = "0psln12gnyf7pp6r01p7bi5lygqpg5frfkc8hh1wn982i1vbkn8s"; - name = "kdenetwork-filesharing-15.12.3.tar.xz"; - }; - }; - kdenetwork-strigi-analyzers = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdenetwork-strigi-analyzers-15.12.3.tar.xz"; - sha256 = "0yisyhic3nmbj7a0csjafhl3mjcg3hqa8pwfrkwwm848b67n9qls"; - name = "kdenetwork-strigi-analyzers-15.12.3.tar.xz"; - }; - }; - kdenlive = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdenlive-15.12.3.tar.xz"; - sha256 = "0svw8dms0qha4mbnyldm0cwvy52ikly3x26b9q8psayjd0pbbb5p"; - name = "kdenlive-15.12.3.tar.xz"; - }; - }; - kdepim = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdepim-15.12.3.tar.xz"; - sha256 = "0niy2wfrarnrphwwi6jp2g0xj5dbvvcmdjgprdrw3zn7ni7kxa9q"; - name = "kdepim-15.12.3.tar.xz"; - }; - }; - kdepimlibs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdepimlibs-15.12.3.tar.xz"; - sha256 = "17dn4yals62657dnx5adm9622z5bmwzl2nqgidcvflamvnvjj2b1"; - name = "kdepimlibs-15.12.3.tar.xz"; - }; - }; - kdepim-runtime = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdepim-runtime-15.12.3.tar.xz"; - sha256 = "1ljsn2b5ylzsr8mm48l4k84bgc9d6h9ilv46zgiciisgqs0xd4y3"; - name = "kdepim-runtime-15.12.3.tar.xz"; - }; - }; - kde-runtime = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kde-runtime-15.12.3.tar.xz"; - sha256 = "097h9kjqikr4qxj6swkh2r90havaw6zxs12kkic0qkmvbxxa6qdj"; - name = "kde-runtime-15.12.3.tar.xz"; - }; - }; - kdesdk-kioslaves = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdesdk-kioslaves-15.12.3.tar.xz"; - sha256 = "0605aldqng33cd44qap2bargsf99jlrclsw84pv2hh4m33qlxkhi"; - name = "kdesdk-kioslaves-15.12.3.tar.xz"; - }; - }; - kdesdk-strigi-analyzers = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdesdk-strigi-analyzers-15.12.3.tar.xz"; - sha256 = "0jc2dvnpmr6hw58nfmnw7lmys74zgl0m5vbmp27vkain95wab17c"; - name = "kdesdk-strigi-analyzers-15.12.3.tar.xz"; - }; - }; - kdesdk-thumbnailers = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdesdk-thumbnailers-15.12.3.tar.xz"; - sha256 = "0k67zx5c2qsrk3nnnrs5ir0z8c42lp4ig9l82brv35iw3frgfyr9"; - name = "kdesdk-thumbnailers-15.12.3.tar.xz"; - }; - }; - kdewebdev = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdewebdev-15.12.3.tar.xz"; - sha256 = "1hn0s72695mm7b3lqx45d2rbm639p3la1v95274il8nd6qnxfd1h"; - name = "kdewebdev-15.12.3.tar.xz"; - }; - }; - kdf = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdf-15.12.3.tar.xz"; - sha256 = "0h37405qiz5478fdm8k7h5hmpmznzrrb6a55grcc9jnp4qxqhdk7"; - name = "kdf-15.12.3.tar.xz"; - }; - }; - kdiamond = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kdiamond-15.12.3.tar.xz"; - sha256 = "1p5a26dw4sasfk0bmf79zwcp60s4wqk65169vn73nn51dkyplr0z"; - name = "kdiamond-15.12.3.tar.xz"; - }; - }; - kfloppy = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kfloppy-15.12.3.tar.xz"; - sha256 = "1dsnv89n48aj1pcx6r64ds9pkafb0d8gpmw8ps0mhiwyhzjik0af"; - name = "kfloppy-15.12.3.tar.xz"; - }; - }; - kfourinline = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kfourinline-15.12.3.tar.xz"; - sha256 = "1j0yhwwsr6kxynhyj8m9bwckz49rp33y8b7br8s4i186byjviw6f"; - name = "kfourinline-15.12.3.tar.xz"; - }; - }; - kgeography = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kgeography-15.12.3.tar.xz"; - sha256 = "19sqrgj08ilf43za4l1apz5whpnxhy9aafygxnklyl6xwkldfa56"; - name = "kgeography-15.12.3.tar.xz"; - }; - }; - kget = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kget-15.12.3.tar.xz"; - sha256 = "0ks210pxs4phrc0k05zaf0ip91yzg5xycfdac1rz4snn3wd5x8x5"; - name = "kget-15.12.3.tar.xz"; - }; - }; - kgoldrunner = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kgoldrunner-15.12.3.tar.xz"; - sha256 = "19pvabs8fbzq6j9l8v2bdvz8rbzhmav14hymxf0fndg3b5qi1v46"; - name = "kgoldrunner-15.12.3.tar.xz"; - }; - }; - kgpg = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kgpg-15.12.3.tar.xz"; - sha256 = "1fw74kpd8f2hm82l2sn8nvi4dzrw1i2xgd5dkfhj1c8frnp4akrn"; - name = "kgpg-15.12.3.tar.xz"; - }; - }; - khangman = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/khangman-15.12.3.tar.xz"; - sha256 = "1a0jbg0xfnjji1y946d8c1dmm8awdf6j4r3w226fmci2q764ap4l"; - name = "khangman-15.12.3.tar.xz"; - }; - }; - kholidays = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kholidays-15.12.3.tar.xz"; - sha256 = "1hr253vc5r3fq2vkrl175zql8z146h5zpikq6wlxabh86isri07b"; - name = "kholidays-15.12.3.tar.xz"; - }; - }; - kidentitymanagement = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kidentitymanagement-15.12.3.tar.xz"; - sha256 = "16v4ykbgiw06xdrd74gnjhwlvdjs926zdfmnn1gzhf2isyz0c4jp"; - name = "kidentitymanagement-15.12.3.tar.xz"; - }; - }; - kig = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kig-15.12.3.tar.xz"; - sha256 = "12wf10d9579jhygrch4avacnxkhrmiyp2ci3kccyvva09cjdahpb"; - name = "kig-15.12.3.tar.xz"; - }; - }; - kigo = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kigo-15.12.3.tar.xz"; - sha256 = "15n6chq4mjynh5b4g2mbk1qjmgxlfzln5fl19i6qi11xd5yanz50"; - name = "kigo-15.12.3.tar.xz"; - }; - }; - killbots = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/killbots-15.12.3.tar.xz"; - sha256 = "14mlmi958sz3nf5l1v2mq5ahfiqnb3m9a32hqfz2d5vzczrvarxv"; - name = "killbots-15.12.3.tar.xz"; - }; - }; - kimap = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kimap-15.12.3.tar.xz"; - sha256 = "1qk68zjw31hfxr577idn2rirmb8pwxxqcwz56jg9kc6mxff6k2sw"; - name = "kimap-15.12.3.tar.xz"; - }; - }; - kio-extras = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kio-extras-15.12.3.tar.xz"; - sha256 = "1lhg5g9fmfsg7yl0kzi779wilgcfdcx0zhzryqz307dhmvbffs87"; - name = "kio-extras-15.12.3.tar.xz"; - }; - }; - kiriki = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kiriki-15.12.3.tar.xz"; - sha256 = "0bff99yxlaqa46d5mgv6qnscyhidbi6kg0zb10b7jl4wr60d1gkm"; - name = "kiriki-15.12.3.tar.xz"; - }; - }; - kiten = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kiten-15.12.3.tar.xz"; - sha256 = "067lcpgp3kc4rl2zz4a8rrm0pdgwsm8fwvrzay4dpghwznkmr7s5"; - name = "kiten-15.12.3.tar.xz"; - }; - }; - kjumpingcube = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kjumpingcube-15.12.3.tar.xz"; - sha256 = "1b6bsp7vmnik1119yx7vgsgn55pz250mqd5fmqxi9khllz1alsh1"; - name = "kjumpingcube-15.12.3.tar.xz"; - }; - }; - kldap = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kldap-15.12.3.tar.xz"; - sha256 = "18rdad71x5h4710bq9b0207rsfnlb7jqriv5zp8qmiz3zf04jwvc"; - name = "kldap-15.12.3.tar.xz"; - }; - }; - klettres = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/klettres-15.12.3.tar.xz"; - sha256 = "1a89w5r1in86k101qjg40q32c5rcgp4fbcydysa40knawnryfd1c"; - name = "klettres-15.12.3.tar.xz"; - }; - }; - klickety = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/klickety-15.12.3.tar.xz"; - sha256 = "1sa3ilz14y1hd7m2czdqsrc5ih2a9gq8a26xh7wy1g4w32c59qp2"; - name = "klickety-15.12.3.tar.xz"; - }; - }; - klines = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/klines-15.12.3.tar.xz"; - sha256 = "1w8vni5m1j2ac6c72z5g6jdd6qml4jqn140a6i8sb5jkr6b8ccwb"; - name = "klines-15.12.3.tar.xz"; - }; - }; - kmag = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmag-15.12.3.tar.xz"; - sha256 = "0ng6rz93hxpzyk9gj91hjlpf7phpcg88wvn00d8f7ddfy0fydnaa"; - name = "kmag-15.12.3.tar.xz"; - }; - }; - kmahjongg = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmahjongg-15.12.3.tar.xz"; - sha256 = "0d6zcyf7l98albi7ikpb16wglvbvh4c2x0y4rpzwy6pbskkmvapd"; - name = "kmahjongg-15.12.3.tar.xz"; - }; - }; - kmailtransport = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmailtransport-15.12.3.tar.xz"; - sha256 = "1p5qkk8qz6072yr6f9gzhzpk05qny8zxaiyaghc9vgh0dq2zpsyq"; - name = "kmailtransport-15.12.3.tar.xz"; - }; - }; - kmbox = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmbox-15.12.3.tar.xz"; - sha256 = "0p2zbxd2my1z48i5xr2nb9fnzqjnvgpfc8m7klp2b443lgmnwg3v"; - name = "kmbox-15.12.3.tar.xz"; - }; - }; - kmime = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmime-15.12.3.tar.xz"; - sha256 = "1as3pql5gxqf9m36qxl78cfzcjxwf41l57b7w9wy4p5wi1izdmba"; - name = "kmime-15.12.3.tar.xz"; - }; - }; - kmines = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmines-15.12.3.tar.xz"; - sha256 = "01090mwigxx5lwrzywnq8qwxqflylrf807rfjqa0s4na9qx2v682"; - name = "kmines-15.12.3.tar.xz"; - }; - }; - kmix = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmix-15.12.3.tar.xz"; - sha256 = "16yrfgg3cvjbypmz6p8zqsvp2qdihlq4d68w46f0m9gnm4dmywf1"; - name = "kmix-15.12.3.tar.xz"; - }; - }; - kmousetool = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmousetool-15.12.3.tar.xz"; - sha256 = "171lcfwrkbfwhvdfi7y2xprv6fb6xn5yd6zi3ifyka1jgl0z3nr8"; - name = "kmousetool-15.12.3.tar.xz"; - }; - }; - kmouth = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmouth-15.12.3.tar.xz"; - sha256 = "1fdgrpv7nqpfcrq5p2d22ysanj3fmwxy1lb2hxy75k1f051jyzvr"; - name = "kmouth-15.12.3.tar.xz"; - }; - }; - kmplot = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kmplot-15.12.3.tar.xz"; - sha256 = "1wxw65chz8ibf0ad6262qpr1761kx8k7mdin5wmiczakwkkpn7r1"; - name = "kmplot-15.12.3.tar.xz"; - }; - }; - knavalbattle = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/knavalbattle-15.12.3.tar.xz"; - sha256 = "1ma4dvrprlb0rdfq2iy56cvgfv6skm32yv6lk5vbqnp3mw7amyjz"; - name = "knavalbattle-15.12.3.tar.xz"; - }; - }; - knetwalk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/knetwalk-15.12.3.tar.xz"; - sha256 = "1iqvp9pmiav0w03p0xfri7l0dx0h97283pyz6xhfmffvi5vsr1zn"; - name = "knetwalk-15.12.3.tar.xz"; - }; - }; - kolf = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kolf-15.12.3.tar.xz"; - sha256 = "0ky9bn8kgirm2shg1vc98q91ab8rx14fm2i4ammx3hjh6qp043hb"; - name = "kolf-15.12.3.tar.xz"; - }; - }; - kollision = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kollision-15.12.3.tar.xz"; - sha256 = "0y2bmw2h2big65arfhg8vhppglvw8xf5acmgbx37mnds3pxwqaw1"; - name = "kollision-15.12.3.tar.xz"; - }; - }; - kolourpaint = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kolourpaint-15.12.3.tar.xz"; - sha256 = "15ws4hyyq2shygblyp9dvq7dln61dpi3g0frxbxwkk8p3iznwsbw"; - name = "kolourpaint-15.12.3.tar.xz"; - }; - }; - kompare = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kompare-15.12.3.tar.xz"; - sha256 = "0lvrhkmdhb74akby2js1hd6avmc5a5w7h2cbb7yw658zmg2xq0lq"; - name = "kompare-15.12.3.tar.xz"; - }; - }; - konquest = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/konquest-15.12.3.tar.xz"; - sha256 = "1vgcqmw84ybly4hv8r33jdj0x8dpnfzdl2n7rqxvmb9ma12lc2wy"; - name = "konquest-15.12.3.tar.xz"; - }; - }; - konsole = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/konsole-15.12.3.tar.xz"; - sha256 = "1n2zv07hj53yq7msgh2r824c6r9gbvki57njn4c7vpx5fzyiwmjk"; - name = "konsole-15.12.3.tar.xz"; - }; - }; - kontactinterface = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kontactinterface-15.12.3.tar.xz"; - sha256 = "0cgb79nmifajs3088pp5qvcbc970grx2irpfdy2nvh451g53jagf"; - name = "kontactinterface-15.12.3.tar.xz"; - }; - }; - kopete = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kopete-15.12.3.tar.xz"; - sha256 = "1r8v6l83avyygpw3yjni7bx01jhsnhq41c89c9g800qzl1zy67f8"; - name = "kopete-15.12.3.tar.xz"; - }; - }; - kpat = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kpat-15.12.3.tar.xz"; - sha256 = "028vx550fkzqnk4dmkkrmicpr8k8yx9alj6da04p2y8ans70v7q4"; - name = "kpat-15.12.3.tar.xz"; - }; - }; - kpimtextedit = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kpimtextedit-15.12.3.tar.xz"; - sha256 = "0jyiwjwz62dk746707z9fs3q0bw6xbz6kg2h92m85060db18vkl5"; - name = "kpimtextedit-15.12.3.tar.xz"; - }; - }; - kppp = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kppp-15.12.3.tar.xz"; - sha256 = "17609g9npn8y3wr6zfq00raifw61qmc6qqn0j6mvn47d4942c1zp"; - name = "kppp-15.12.3.tar.xz"; - }; - }; - kqtquickcharts = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kqtquickcharts-15.12.3.tar.xz"; - sha256 = "1lyx8m02xqjc8l65plwm12wdyqbspg5qr9hr1wlj6x711amjp7m4"; - name = "kqtquickcharts-15.12.3.tar.xz"; - }; - }; - krdc = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/krdc-15.12.3.tar.xz"; - sha256 = "0j05p5j99bbldcnzwd0dqshry7pgb5v2jp2jqg390vfmqmx438sd"; - name = "krdc-15.12.3.tar.xz"; - }; - }; - kremotecontrol = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kremotecontrol-15.12.3.tar.xz"; - sha256 = "1yjjb6agh1i3axj82g4zsaygm2x39x1bnq90aiplxn84gh98cnfd"; - name = "kremotecontrol-15.12.3.tar.xz"; - }; - }; - kreversi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kreversi-15.12.3.tar.xz"; - sha256 = "09h1pi4kccy0k0m0zifdlys89j2ybsa9xwp8aqzyifbqi7s874cs"; - name = "kreversi-15.12.3.tar.xz"; - }; - }; - krfb = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/krfb-15.12.3.tar.xz"; - sha256 = "1a6ddsjr26lwk7d7isna8shnzciyqghad9nhzn5jgqc56v13hg1m"; - name = "krfb-15.12.3.tar.xz"; - }; - }; - kross-interpreters = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kross-interpreters-15.12.3.tar.xz"; - sha256 = "14g1mp0izqqllr75vlbi9yn6awn77zasb42zppqxq1rl11bwp2li"; - name = "kross-interpreters-15.12.3.tar.xz"; - }; - }; - kruler = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kruler-15.12.3.tar.xz"; - sha256 = "0i9f2ck55p87npk7xsqgi5zy0a9yiiv4razjdfj7fh8g78xj51yk"; - name = "kruler-15.12.3.tar.xz"; - }; - }; - ksaneplugin = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksaneplugin-15.12.3.tar.xz"; - sha256 = "0834p0lfbf7l8lknxr0rz1w8j688dld36nyrz6pfk00h06an59h5"; - name = "ksaneplugin-15.12.3.tar.xz"; - }; - }; - kscd = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kscd-15.12.3.tar.xz"; - sha256 = "0d82di7sg9mypxk7s24yldjjgwymi2yxwjhai67337wn6ivvw338"; - name = "kscd-15.12.3.tar.xz"; - }; - }; - kshisen = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kshisen-15.12.3.tar.xz"; - sha256 = "0aqz8w1rps0g8kvccqpkpmy8g2m5k4bpydz9gdh1nhia5h9558fq"; - name = "kshisen-15.12.3.tar.xz"; - }; - }; - ksirk = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksirk-15.12.3.tar.xz"; - sha256 = "1z43v25gfv6gzpsm87s84v34389fjvvgq41maa1yzv0p3lj14v86"; - name = "ksirk-15.12.3.tar.xz"; - }; - }; - ksnakeduel = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksnakeduel-15.12.3.tar.xz"; - sha256 = "1bkbbfvbpihq19z0jvk3ix535y60b7fb943crcflbqyknpnnh038"; - name = "ksnakeduel-15.12.3.tar.xz"; - }; - }; - kspaceduel = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kspaceduel-15.12.3.tar.xz"; - sha256 = "0snjlvc56299frj89h41rs6ij85idyzcp8yv6rkc8kqjbdqm8hjj"; - name = "kspaceduel-15.12.3.tar.xz"; - }; - }; - ksquares = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksquares-15.12.3.tar.xz"; - sha256 = "06ij62n2kbjbgijcw3ddkc3fyl27rgyrkbz3cl5f3ydfyrmsnmzv"; - name = "ksquares-15.12.3.tar.xz"; - }; - }; - kstars = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kstars-15.12.3.tar.xz"; - sha256 = "1ka31vbzwdxv16p4nh40g6c6yijczv73y3js1scrc195k6byni5r"; - name = "kstars-15.12.3.tar.xz"; - }; - }; - ksudoku = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksudoku-15.12.3.tar.xz"; - sha256 = "1132551s0hdabm42jxnbd9q9yiwh40lgfnzm4ccznv02l1g0fp8k"; - name = "ksudoku-15.12.3.tar.xz"; - }; - }; - ksystemlog = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ksystemlog-15.12.3.tar.xz"; - sha256 = "0yiq0kajqjbb3s8ljp11kb83xha4n20v17fk8rnjn9dymvlkmw1j"; - name = "ksystemlog-15.12.3.tar.xz"; - }; - }; - kteatime = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kteatime-15.12.3.tar.xz"; - sha256 = "0chf0cbghmf0aj0l0zxinhfpwpr40af3b4r7axkj77lrkkyl1acq"; - name = "kteatime-15.12.3.tar.xz"; - }; - }; - ktimer = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktimer-15.12.3.tar.xz"; - sha256 = "1sghh5983bzn3qlfm7fs74v6f5djmbixppfw09j8nn9rsmsah30a"; - name = "ktimer-15.12.3.tar.xz"; - }; - }; - ktnef = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktnef-15.12.3.tar.xz"; - sha256 = "043im3rcw210w90spyxap3pjqfk5dmgk57p2pqkxir6mcsfz9hm8"; - name = "ktnef-15.12.3.tar.xz"; - }; - }; - ktouch = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktouch-15.12.3.tar.xz"; - sha256 = "1zmzm52pxi3hs7r12qsfmmqf8x7q1aapss2drlmx3r4lfi3hwzsp"; - name = "ktouch-15.12.3.tar.xz"; - }; - }; - ktp-accounts-kcm = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-accounts-kcm-15.12.3.tar.xz"; - sha256 = "1zyprpzwbpvj22wsl6bc75r38bm7rshhl7llyk47rl0v02p8gd7s"; - name = "ktp-accounts-kcm-15.12.3.tar.xz"; - }; - }; - ktp-approver = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-approver-15.12.3.tar.xz"; - sha256 = "01ppnmi7fah8yq4yvhsrz6kask9f1fxhzcvjmjr5igv2d9hfsppw"; - name = "ktp-approver-15.12.3.tar.xz"; - }; - }; - ktp-auth-handler = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-auth-handler-15.12.3.tar.xz"; - sha256 = "1hkc7gkh38vw7l3b8ygywifv60g1chm3xcgklj94dsm3x9j8xbwa"; - name = "ktp-auth-handler-15.12.3.tar.xz"; - }; - }; - ktp-common-internals = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-common-internals-15.12.3.tar.xz"; - sha256 = "13wp73k52nrqml17x9papdi9jymbymrkszag6rmmzmw5rq5kikb6"; - name = "ktp-common-internals-15.12.3.tar.xz"; - }; - }; - ktp-contact-list = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-contact-list-15.12.3.tar.xz"; - sha256 = "1b9ql2435wq410gfxw5ybvlm68pilx8rp8dxbxrs1cw4wrc88mf3"; - name = "ktp-contact-list-15.12.3.tar.xz"; - }; - }; - ktp-contact-runner = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-contact-runner-15.12.3.tar.xz"; - sha256 = "0hnkrnq2kr3jan0pmy82hndji5jvjxpr9sn90s8swwksdv8f2gc9"; - name = "ktp-contact-runner-15.12.3.tar.xz"; - }; - }; - ktp-desktop-applets = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-desktop-applets-15.12.3.tar.xz"; - sha256 = "0pcync77gh55wn9701mviwmnm2ahxqs1rfzw7cxsjvgk4324arzq"; - name = "ktp-desktop-applets-15.12.3.tar.xz"; - }; - }; - ktp-filetransfer-handler = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-filetransfer-handler-15.12.3.tar.xz"; - sha256 = "0ykvly1giqn5nn4vwa7xcdz0q6mrni6raay9krvajk97qcdc5af8"; - name = "ktp-filetransfer-handler-15.12.3.tar.xz"; - }; - }; - ktp-kded-module = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-kded-module-15.12.3.tar.xz"; - sha256 = "0x42cgjiwy4yawial483ilb0sxncnip40ilma0kxzli0nzlbjfq8"; - name = "ktp-kded-module-15.12.3.tar.xz"; - }; - }; - ktp-send-file = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-send-file-15.12.3.tar.xz"; - sha256 = "0bx30sbwbxjgnylx9xzhq5vkisn34xxzqryalvg1lzhqnh338iri"; - name = "ktp-send-file-15.12.3.tar.xz"; - }; - }; - ktp-text-ui = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktp-text-ui-15.12.3.tar.xz"; - sha256 = "044pfam4i3qs43xgp2q0lsvrfjvbvbywclw4wx22m0i02580llga"; - name = "ktp-text-ui-15.12.3.tar.xz"; - }; - }; - ktuberling = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/ktuberling-15.12.3.tar.xz"; - sha256 = "0x73hppzchi5k4y9xd520qllkhn5mhrrmaapnacybb2pbpv58d17"; - name = "ktuberling-15.12.3.tar.xz"; - }; - }; - kturtle = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kturtle-15.12.3.tar.xz"; - sha256 = "12x86v658d7by5x1axwchn53fd23yrfavfxn5yy700vbqa6jd8qn"; - name = "kturtle-15.12.3.tar.xz"; - }; - }; - kubrick = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kubrick-15.12.3.tar.xz"; - sha256 = "0az5vcg5a565cmzmavzww5sl7wiz6gi2p0h61xl3di1pc8gk8wkp"; - name = "kubrick-15.12.3.tar.xz"; - }; - }; - kuser = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kuser-15.12.3.tar.xz"; - sha256 = "0aggk24z6fmsqimj7c3zi0vaq508m3g1956v0kfxd2k5wipb9cfz"; - name = "kuser-15.12.3.tar.xz"; - }; - }; - kwalletmanager = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kwalletmanager-15.12.3.tar.xz"; - sha256 = "1qyms04w0xmhxxd4kb9zsdkr50gxbjhs3hjq5vhvbagb05ya8g4m"; - name = "kwalletmanager-15.12.3.tar.xz"; - }; - }; - kwordquiz = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/kwordquiz-15.12.3.tar.xz"; - sha256 = "1vhxdng5i9hzx57mj9jfsdc63wbk9xyjhr6f1hq035z0cz4j59r6"; - name = "kwordquiz-15.12.3.tar.xz"; - }; - }; - libkcddb = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkcddb-15.12.3.tar.xz"; - sha256 = "1m3r5d4jy4n8l29ncm3wnmmnfilr64qn987brm4y16bcbxidigcz"; - name = "libkcddb-15.12.3.tar.xz"; - }; - }; - libkcompactdisc = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkcompactdisc-15.12.3.tar.xz"; - sha256 = "0cb50346c4jv35125kaz65m8n1bw0rn8wynig6iygp8b2xam9303"; - name = "libkcompactdisc-15.12.3.tar.xz"; - }; - }; - libkdcraw = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkdcraw-15.12.3.tar.xz"; - sha256 = "1d2l6nk25vj0h0a7slnz6dnlpfr4wyc6rh188vsdm24nz8q89hqf"; - name = "libkdcraw-15.12.3.tar.xz"; - }; - }; - libkdeedu = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkdeedu-15.12.3.tar.xz"; - sha256 = "1imk40ygm9jndj95hkz1grjrsh9r0adjz41sarkjyfglxw3xwm0c"; - name = "libkdeedu-15.12.3.tar.xz"; - }; - }; - libkdegames = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkdegames-15.12.3.tar.xz"; - sha256 = "1v3zmg8zb9cnfw3inba68c4v6iv1mqinskvsa61rkzzdhjf1cjj4"; - name = "libkdegames-15.12.3.tar.xz"; - }; - }; - libkeduvocdocument = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkeduvocdocument-15.12.3.tar.xz"; - sha256 = "1i4s3v9pdn0jrgbdidq1rg9zka9m06h1c1yxrs0j0zscwmnalzlc"; - name = "libkeduvocdocument-15.12.3.tar.xz"; - }; - }; - libkexiv2 = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkexiv2-15.12.3.tar.xz"; - sha256 = "196sxzhirc1l33jj1zjl6h57w9fyqa0kik0mmwj9w3jbjbsdmazv"; - name = "libkexiv2-15.12.3.tar.xz"; - }; - }; - libkface = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkface-15.12.3.tar.xz"; - sha256 = "0rsy3xqfj7mbnhwb8gknv0cz20m2nv1zzs9jl39dna381gjh7sw0"; - name = "libkface-15.12.3.tar.xz"; - }; - }; - libkgeomap = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkgeomap-15.12.3.tar.xz"; - sha256 = "0mm46if7jrf31s9sxn2vpaq6bk4bansbkgjb166anbfb6ywfs30d"; - name = "libkgeomap-15.12.3.tar.xz"; - }; - }; - libkipi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkipi-15.12.3.tar.xz"; - sha256 = "0lz8b792gpdgy6nlw50n62jn7fj2bj8znqsln2s2vmibgjscvl55"; - name = "libkipi-15.12.3.tar.xz"; - }; - }; - libkmahjongg = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkmahjongg-15.12.3.tar.xz"; - sha256 = "0vjzdicqwgz49vykb698b2vgj1vmsxhn2ad8fjw863dqds9979v7"; - name = "libkmahjongg-15.12.3.tar.xz"; - }; - }; - libkomparediff2 = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libkomparediff2-15.12.3.tar.xz"; - sha256 = "1iw60r4rnijsh22mslrcsgrhqndqndvqsin20g0gx8zl6qs680kn"; - name = "libkomparediff2-15.12.3.tar.xz"; - }; - }; - libksane = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/libksane-15.12.3.tar.xz"; - sha256 = "0r4v20l6bpv5j0gk0vcm90ag4cd410mllfw03f4v683wsda1phcj"; - name = "libksane-15.12.3.tar.xz"; - }; - }; - lokalize = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/lokalize-15.12.3.tar.xz"; - sha256 = "1qnhhvgpigss0ngca7yqwqlwixm2221cynp94nw0csfx72mkbpyl"; - name = "lokalize-15.12.3.tar.xz"; - }; - }; - lskat = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/lskat-15.12.3.tar.xz"; - sha256 = "05d40mc8bs4f45jy1sh64chp0ffb0631660wwd4p60d7x0j5as98"; - name = "lskat-15.12.3.tar.xz"; - }; - }; - marble = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/marble-15.12.3.tar.xz"; - sha256 = "1gz7nj0jaqg7pbird2rv3cngfifpm9g1dnmx9rykdripv9m4g9am"; - name = "marble-15.12.3.tar.xz"; - }; - }; - mplayerthumbs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/mplayerthumbs-15.12.3.tar.xz"; - sha256 = "0r2v4b1kxrc1rpk771xry1swirf66z9lbrg7qs0an5vgp9wmghzw"; - name = "mplayerthumbs-15.12.3.tar.xz"; - }; - }; - okteta = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/okteta-15.12.3.tar.xz"; - sha256 = "1qhrddir85z5c91xrqzndnd3n30vsfw6rafsk55zxwyhkws2jks0"; - name = "okteta-15.12.3.tar.xz"; - }; - }; - okular = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/okular-15.12.3.tar.xz"; - sha256 = "1xrw0rvzw2i7289fv2maff3zb7f3vqv50fb88dbx67n9mzib794v"; - name = "okular-15.12.3.tar.xz"; - }; - }; - palapeli = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/palapeli-15.12.3.tar.xz"; - sha256 = "08sj1zjd3smfcdgnmj57q9yz3bsd7k654zyh3sqar29yd4ja1b8l"; - name = "palapeli-15.12.3.tar.xz"; - }; - }; - parley = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/parley-15.12.3.tar.xz"; - sha256 = "00h83mpkz52ybav8d3c3gv6y53xcz3d5abq11daa6hc171bm35qy"; - name = "parley-15.12.3.tar.xz"; - }; - }; - picmi = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/picmi-15.12.3.tar.xz"; - sha256 = "0x952gpdz415pr691bv8x98pnvs1xajgsgk6rm6kx9crm1qm0qfa"; - name = "picmi-15.12.3.tar.xz"; - }; - }; - poxml = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/poxml-15.12.3.tar.xz"; - sha256 = "1w3mgz5ayryra844pn5jrhnxnhbz8d8kjg74a9xnw98j81qqjz1y"; - name = "poxml-15.12.3.tar.xz"; - }; - }; - print-manager = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/print-manager-15.12.3.tar.xz"; - sha256 = "1xranm7l9bgg9dnpj91d9nmzmbgj52zgzsvvsnp9ygxgcs5bzlhc"; - name = "print-manager-15.12.3.tar.xz"; - }; - }; - rocs = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/rocs-15.12.3.tar.xz"; - sha256 = "0pl3ildg2rgnq7ax28ba5ninv8lw7mm5c4zwj63fwz3ds1d4rysq"; - name = "rocs-15.12.3.tar.xz"; - }; - }; - signon-kwallet-extension = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/signon-kwallet-extension-15.12.3.tar.xz"; - sha256 = "05y6c4pd833zwxx6fndidxr39w3qxga6nkcjds8ywxrr0968mfi7"; - name = "signon-kwallet-extension-15.12.3.tar.xz"; - }; - }; - spectacle = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/spectacle-15.12.3.tar.xz"; - sha256 = "0qyyc30pgybx205a45vj0yqv03csi0dihx012iz3hlnhgr2g586n"; - name = "spectacle-15.12.3.tar.xz"; - }; - }; - step = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/step-15.12.3.tar.xz"; - sha256 = "0473n43wqiwsrajy06mr024qnfr2nhhjxwsv1arg2gv7xvzhbgq1"; - name = "step-15.12.3.tar.xz"; - }; - }; - svgpart = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/svgpart-15.12.3.tar.xz"; - sha256 = "1lhhjmf2ay9v6p64693kf5rk3jywyyyd18xq9lgqlng0b27acsac"; - name = "svgpart-15.12.3.tar.xz"; - }; - }; - sweeper = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/sweeper-15.12.3.tar.xz"; - sha256 = "0wnk6zmf24mpnacsp6wi8c617jl4znk1pbm9jl38ckmg5z56ghz0"; - name = "sweeper-15.12.3.tar.xz"; - }; - }; - syndication = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/syndication-15.12.3.tar.xz"; - sha256 = "07xnjxjdf11k0fkpf9xdfvfh176pimx3v4h5y6f7bswsgnld7h38"; - name = "syndication-15.12.3.tar.xz"; - }; - }; - umbrello = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/umbrello-15.12.3.tar.xz"; - sha256 = "072nqqjq2cfxwi098kh7m24cvs6f6nss62wxdskvzdkbcd7gfh26"; - name = "umbrello-15.12.3.tar.xz"; - }; - }; - zeroconf-ioslave = { - version = "15.12.3"; - src = fetchurl { - url = "${mirror}/stable/applications/15.12.3/src/zeroconf-ioslave-15.12.3.tar.xz"; - sha256 = "1iv4l58v7wg4kjmp7723za84rpns4dm6av6b6cybmj8dzw3jixxf"; - name = "zeroconf-ioslave-15.12.3.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/attica.nix b/pkgs/desktops/kde-5/frameworks-5.19/attica.nix deleted file mode 100644 index 98721876c1204..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.19/baloo.nix deleted file mode 100644 index 38c41d9271d86..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.19/bluez-qt.nix deleted file mode 100644 index f981b0516f720..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix deleted file mode 100644 index 44cc99daf261b..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework -, extra-cmake-modules -, qtsvg -}: - -kdeFramework { - name = "breeze-icons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtsvg ]; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/default.nix deleted file mode 100644 index 2c15f31a9c9e6..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/default.nix +++ /dev/null @@ -1,120 +0,0 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./fetchsrcs.sh to point to the updated URL. -# 2. Run ./fetchsrcs.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. Be sure to check if -# any new components have been added and package them as necessary. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - packages = self: with self; { - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - outputs = args.outputs or [ "dev" "out" ]; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - breeze-icons = callPackage ./breeze-icons.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - -in packages diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix deleted file mode 100644 index 1c2ea70442d32..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - - outputs = [ "out" ]; # this package has no runtime components - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = with lib; { - license = licenses.bsd2; - maintainers = [ maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch deleted file mode 100644 index a74340a6dc969..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch +++ /dev/null @@ -1,37 +0,0 @@ -Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -=================================================================== ---- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake -+++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -@@ -200,32 +200,6 @@ - # GNUInstallDirs code deals with re-configuring, but that is dealt with - # by the _define_* macros in this module). - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series deleted file mode 100644 index b4569e50a5f73..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series +++ /dev/null @@ -1 +0,0 @@ -nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index 193cb048949a8..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,80 +0,0 @@ -_ecmSetXdgDirs() { - addToSearchPathOnce XDG_DATA_DIRS "$1/share" - addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" -} - -_ecmPropagateSharedData() { - local sharedPaths=( \ - "config.cfg" \ - "kconf_update" \ - "kservices5" \ - "kservicetypes5" \ - "kxmlgui5" \ - "knotifications5" \ - "icons" \ - "sounds" \ - "templates" \ - "wallpapers" \ - "applications" \ - "desktop-directories" \ - "mime" \ - "dbus-1" \ - "interfaces" \ - "services" \ - "system-services" ) - for dir in ${sharedPaths[@]}; do - if [ -d "$1/share/$dir" ]; then - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" - propagateOnce propagatedBuildInputs "$1" - propagateOnce propagatedUserEnvPkgs "$1" - break - fi - done -} - -_ecmConfig() { - # Because we need to use absolute paths here, we must set *all* the paths. - cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" - cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" - cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" - cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" - cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" - cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" - cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" - cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" - cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" - cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" - cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" - cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" - cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" - cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" - cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" - cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" - cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" - cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" - cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" - cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" - cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" - cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" - cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" - cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" - cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" - cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" - cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" - cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" - cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" - cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" - cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" - cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" - cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" - cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" - cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" -} - -envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) -preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/desktops/kde-5/frameworks-5.19/fetchsrcs.sh b/pkgs/desktops/kde-5/frameworks-5.19/fetchsrcs.sh deleted file mode 100755 index 7937e6f8bed92..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.19/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/desktops/kde-5/frameworks-5.19/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.19/frameworkintegration.nix deleted file mode 100644 index 26987c385ad5d..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.19/kactivities.nix deleted file mode 100644 index 3225098f43980..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.19/kapidox.nix deleted file mode 100644 index 647be8f052c39..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.19/karchive.nix deleted file mode 100644 index a8d9a0003c3b8..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch deleted file mode 100644 index c66f5ecd008f8..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: kauth-5.18.0/KF5AuthConfig.cmake.in -=================================================================== ---- kauth-5.18.0.orig/KF5AuthConfig.cmake.in -+++ kauth-5.18.0/KF5AuthConfig.cmake.in -@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") -+set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") -+set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix deleted file mode 100644 index 1352d8c5821f5..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, kcoreaddons -, polkit-qt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkit-qt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/kauth-policy-install.patch b/pkgs/desktops/kde-5/frameworks-5.19/kauth/kauth-policy-install.patch deleted file mode 100644 index 340155256f28f..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kauth/kauth-policy-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/KF5AuthConfig.cmake.in b/KF5AuthConfig.cmake.in -index e859ec7..9a8ab18 100644 ---- a/KF5AuthConfig.cmake.in -+++ b/KF5AuthConfig.cmake.in -@@ -4,7 +4,7 @@ set(KAUTH_STUB_FILES_DIR "${PACKAGE_PREFIX_DIR}/@KF5_DATA_INSTALL_DIR@/kauth/") - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "\${CMAKE_INSTALL_PREFIX}/share/polkit-1/actions") - set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/series b/pkgs/desktops/kde-5/frameworks-5.19/kauth/series deleted file mode 100644 index d2689425c3876..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kauth/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.19/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6da..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa95012d..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/default.nix deleted file mode 100644 index dbbb783ac6152..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcodecs.nix deleted file mode 100644 index 53a69a69b69c4..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcompletion.nix deleted file mode 100644 index e393774f16a52..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.19/kconfig.nix deleted file mode 100644 index e132afe598866..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee90534f..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix deleted file mode 100644 index 3b3bd27cce085..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kconfigwidgets/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - moveToOutput "bin/preparetips5" "$dev" - wrapQtProgram "$dev/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix deleted file mode 100644 index f3a1db7bd4841..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcoreaddons.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ shared_mime_info ]; - postInstall = '' - wrapQtProgram "$out/bin/desktoptojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.19/kcrash.nix deleted file mode 100644 index bbab78ccb4090..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14bb..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdeclarative.nix deleted file mode 100644 index 74d107466cfc4..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kded.nix b/pkgs/desktops/kde-5/frameworks-5.19/kded.nix deleted file mode 100644 index 47ae2d68c68e4..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix deleted file mode 100644 index e61c4bb86e7c7..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix deleted file mode 100644 index 843db83a99b23..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - outputs = [ "dev" "out" ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch deleted file mode 100644 index eabb702544830..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -=================================================================== ---- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp -+++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -@@ -292,7 +292,7 @@ static QString relativeInstallPath(const - return QFile::decodeName(ICON_INSTALL_DIR "/"); - } - if (strcmp("include", type) == 0) { -- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); -+ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); - } - break; - case 'l': diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series deleted file mode 100644 index 9b08ab208774a..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series +++ /dev/null @@ -1 +0,0 @@ -nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh deleted file mode 100644 index 21ac2e83b5dae..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdesignerplugin.nix deleted file mode 100644 index cbc114ccca036..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdesignerplugin.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kgendesignerplugin" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdesu.nix deleted file mode 100644 index 364fbd6a720bd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdewebkit.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdewebkit.nix deleted file mode 100644 index d361313d1d494..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdnssd.nix deleted file mode 100644 index f00432b0c9ce4..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix deleted file mode 100644 index f67c19f42395a..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab32b..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/setup-hook.sh deleted file mode 100644 index 5cfffbd622d12..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/setup-hook.sh +++ /dev/null @@ -1,5 +0,0 @@ -addXdgData() { - addToSearchPath XDG_DATA_DIRS "$1/share" -} - -envHooks+=(addXdgData) diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kemoticons.nix deleted file mode 100644 index d165f84e3a2dd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata.nix b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata.nix deleted file mode 100644 index be99c58d55041..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, poppler, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch deleted file mode 100644 index 732f7b69c828d..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kfilemetadata-5.18.0/src/CMakeLists.txt -=================================================================== ---- kfilemetadata-5.18.0.orig/src/CMakeLists.txt -+++ kfilemetadata-5.18.0/src/CMakeLists.txt -@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K - - install(EXPORT KF5FileMetaDataTargets - NAMESPACE KF5:: -- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData -+ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData - FILE KF5FileMetaDataTargets.cmake) - - install(FILES diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix deleted file mode 100644 index 9bb4831cf8da2..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules -, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series deleted file mode 100644 index d2689425c3876..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.19/kglobalaccel.nix deleted file mode 100644 index c535b3590a388..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kguiaddons.nix deleted file mode 100644 index bc4e9ab11843a..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.19/khtml.nix deleted file mode 100644 index d40df466ebbdc..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.19/ki18n.nix deleted file mode 100644 index 268006512e7c3..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/ki18n.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtdeclarative -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default-theme-breeze.patch deleted file mode 100644 index 5b3b15d5d5b5b..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default-theme-breeze.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kiconthemes-5.17.0/src/kicontheme.cpp -=================================================================== ---- kiconthemes-5.17.0.orig/src/kicontheme.cpp -+++ kiconthemes-5.17.0/src/kicontheme.cpp -@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() - // static - QString KIconTheme::defaultThemeName() - { -- return QStringLiteral("oxygen"); -+ return QStringLiteral("breeze"); - } - - void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default.nix deleted file mode 100644 index b78b25582bebd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper -, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ breeze-icons ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/kiconfinder5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/series deleted file mode 100644 index ab5cc8a3edb27..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kiconthemes/series +++ /dev/null @@ -1 +0,0 @@ -default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.19/kidletime.nix deleted file mode 100644 index fc0865600239f..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.19/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c64..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix deleted file mode 100644 index 64210ca76051c..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch deleted file mode 100644 index 52c5563ea581d..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kinit/kinit-libpath.patch +++ /dev/null @@ -1,31 +0,0 @@ -Index: kinit-5.19.0/src/kdeinit/kinit.cpp -=================================================================== ---- kinit-5.19.0.orig/src/kdeinit/kinit.cpp -+++ kinit-5.19.0/src/kdeinit/kinit.cpp -@@ -658,15 +658,17 @@ static pid_t launch(int argc, const char - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -- l.load(); -+ // Try to load the library relative to the active profiles. -+ QByteArrayList profiles = qgetenv("NIX_PROFILES").split(' '); -+ // Reverse the profile list. -+ std::reverse(profiles.begin(), profiles.end()); -+ const QString libdir = QString::fromLatin1("/lib/"); -+ Q_FOREACH (const QByteArray &profile, profiles) { -+ if (!profile.isEmpty()) { -+ l.setFileName(QFile::decodeName(profile) + libdir + libpath); -+ if (l.load()) break; -+ } -+ } - } - } - if (!l.isLoaded()) { diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/series b/pkgs/desktops/kde-5/frameworks-5.19/kinit/series deleted file mode 100644 index 5faa456366b92..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kinit/series +++ /dev/null @@ -1 +0,0 @@ -kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kio/default.nix deleted file mode 100644 index a2131ff338505..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kio/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - wrapQtProgram "$out/bin/protocoltojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.19/kio/samba-search-path.patch deleted file mode 100644 index c9ad46b41bb76..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kio/samba-search-path.patch +++ /dev/null @@ -1,28 +0,0 @@ -Index: kio-5.17.0/src/core/ksambashare.cpp -=================================================================== ---- kio-5.17.0.orig/src/core/ksambashare.cpp -+++ kio-5.17.0/src/core/ksambashare.cpp -@@ -67,13 +67,18 @@ KSambaSharePrivate::~KSambaSharePrivate( - - bool KSambaSharePrivate::isSambaInstalled() - { -- if (QFile::exists(QStringLiteral("/usr/sbin/smbd")) -- || QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) { -- return true; -+ const QByteArray pathEnv = qgetenv("PATH"); -+ if (!pathEnv.isEmpty()) { -+ QLatin1Char pathSep(':'); -+ QStringList paths = QFile::decodeName(pathEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/smbd"); -+ if (QFile::exists(*it)) { -+ return true; -+ } -+ } - } - -- //qDebug() << "Samba is not installed!"; -- - return false; - } - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kio/series b/pkgs/desktops/kde-5/frameworks-5.19/kio/series deleted file mode 100644 index 77ca154500474..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kio/series +++ /dev/null @@ -1 +0,0 @@ -samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.19/kitemmodels.nix deleted file mode 100644 index a9024d771cc33..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.19/kitemviews.nix deleted file mode 100644 index 931019ce495d7..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.19/kjobwidgets.nix deleted file mode 100644 index 746edf12eea03..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.19/kjs.nix deleted file mode 100644 index 768720f178c87..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.19/kjsembed.nix deleted file mode 100644 index 22eef2d47bde6..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.19/kmediaplayer.nix deleted file mode 100644 index 460458b22323a..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.19/knewstuff.nix deleted file mode 100644 index 5bcd6f3014624..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.19/knotifications.nix deleted file mode 100644 index 7e301dd0f2683..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.19/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e57..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/kpackage/allow-external-paths.patch deleted file mode 100644 index e9d7444481480..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/allow-external-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/package.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/package.cpp -+++ kpackage-5.18.0/src/kpackage/package.cpp -@@ -808,7 +808,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kpackage/default.nix deleted file mode 100644 index aea1b0d31a0d9..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kdoctools -, ki18n -, makeQtWrapper -}: - -kdeFramework { - name = "kpackage"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ karchive kconfig ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postInstall = '' - wrapQtProgram "$out/bin/kpackagetool5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch deleted file mode 100644 index ddbf17d00064c..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/packageloader.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/packageloader.cpp -+++ kpackage-5.18.0/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::li - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")) << QStringLiteral("metadata.json"); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -Index: kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/private/packagejobthread.cpp -+++ kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -@@ -146,7 +146,7 @@ bool indexDirectory(const QString& dir, - - QJsonArray plugins; - -- QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories); -+ QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - const QString path = it.fileInfo().absoluteFilePath(); diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.19/kpackage/series deleted file mode 100644 index 9b7f076efc70e..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpackage/series +++ /dev/null @@ -1,2 +0,0 @@ -allow-external-paths.patch -qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.19/kparts.nix deleted file mode 100644 index 1c3e0b2cbc519..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kparts.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice -, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "kparts"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kiconthemes kjobwidgets knotifications - kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.19/kpeople.nix deleted file mode 100644 index 4c3877e7efd2f..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpeople.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n -, kitemviews, kservice, kwidgetsaddons, qtdeclarative -}: - -kdeFramework { - name = "kpeople"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kitemviews kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n qtdeclarative ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.19/kplotting.nix deleted file mode 100644 index c16f51b5ac3cd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kplotting.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kplotting"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.19/kpty.nix deleted file mode 100644 index 2e34e6f674cee..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kpty.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }: - -kdeFramework { - name = "kpty"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kross.nix b/pkgs/desktops/kde-5/frameworks-5.19/kross.nix deleted file mode 100644 index 7c6f079feaa7c..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kross.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kcoreaddons -, kdoctools, ki18n, kiconthemes, kio, kparts, kwidgetsaddons -, kxmlgui, qtscript -}: - -kdeFramework { - name = "kross"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcompletion kcoreaddons kxmlgui ]; - propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.19/krunner.nix deleted file mode 100644 index 12d2b54d0eb36..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/krunner.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kservice, plasma-framework, qtquick1, solid -, threadweaver -}: - -kdeFramework { - name = "krunner"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kservice qtquick1 solid threadweaver - ]; - propagatedBuildInputs = [ ki18n kio plasma-framework ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 3d8397d8ee2df..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kservice/0002-no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.19/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c685261195..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix deleted file mode 100644 index 3a27d85b9166e..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - propagatedNativeBuildInputs = [ extra-cmake-modules ]; - nativeBuildInputs = [ kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/kservice/setup-hook.sh deleted file mode 100644 index c28e862ff8aea..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kservice/setup-hook.sh +++ /dev/null @@ -1,43 +0,0 @@ -addServicePkg() { - local propagated - for dir in "share/kservices5" "share/kservicetypes5"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - - break - fi - done -} - -envHooks+=(addServicePkg) - -local propagated -for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z@out@" ]]; then - propagated=1 - break - fi -done -if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs @out@" -fi diff --git a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/default.nix deleted file mode 100644 index b8df6a5f4c0d4..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper, perl -, karchive, kconfig, kguiaddons, kiconthemes, kparts -, libgit2 -, qtscript, qtxmlpatterns -, ki18n, kio, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts - libgit2 - qtscript qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/no-qcoreapplication.patch deleted file mode 100644 index 19ab1e1e55138..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/no-qcoreapplication.patch +++ /dev/null @@ -1,36 +0,0 @@ -Index: ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -=================================================================== ---- ktexteditor-5.18.0.orig/src/syntax/data/katehighlightingindexer.cpp -+++ ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -@@ -55,19 +55,16 @@ QStringList readListing(const QString &f - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -152,7 +149,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/series deleted file mode 100644 index 46cd23829a2fd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/ktexteditor/series +++ /dev/null @@ -1 +0,0 @@ -no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.19/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a832..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.19/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83d5..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix deleted file mode 100644 index 5ade5f63a8d04..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets -, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes -, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt -, makeQtWrapper }: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes - knotifications kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.19/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fecfd..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.19/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200de3..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.19/kxmlgui.nix deleted file mode 100644 index f081d5f9170e3..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kxmlgui.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kiconthemes kitemviews ktextwidgets - ]; - propagatedBuildInputs = [ - kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.19/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc87..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.19/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9be..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.19/networkmanager-qt.nix deleted file mode 100644 index 333378bd14316..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.19/oxygen-icons5.nix deleted file mode 100644 index ee350f8e15367..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/oxygen-icons5.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework -, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "oxygen-icons5"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/plasma-framework/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/plasma-framework/default.nix deleted file mode 100644 index d8846f7772318..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/solid.nix b/pkgs/desktops/kde-5/frameworks-5.19/solid.nix deleted file mode 100644 index afd125e3c5973..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.19/sonnet.nix deleted file mode 100644 index 943fe04a1c92c..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.19/srcs.nix deleted file mode 100644 index b86c0b71224d6..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/srcs.nix +++ /dev/null @@ -1,565 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/attica-5.19.0.tar.xz"; - sha256 = "0cbvjnv2fcqsxspiy5pzmnnzrpfamlsc9j927kd6gpzai1ckf1lv"; - name = "attica-5.19.0.tar.xz"; - }; - }; - baloo = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/baloo-5.19.0.tar.xz"; - sha256 = "02yy0w13h5wxm74a87zi439f6yd9miid6rb54nia0pgvcka98svg"; - name = "baloo-5.19.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/bluez-qt-5.19.0.tar.xz"; - sha256 = "0609i7rzhnnnp4fqnwscwp6y646ji8kl2hw5sy7azc87yllisnyv"; - name = "bluez-qt-5.19.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/breeze-icons-5.19.0.tar.xz"; - sha256 = "0bwix0jl1dscqfb7ygn9drpd9ivfx4g15vz6h01mswvxa9lz1vj0"; - name = "breeze-icons-5.19.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/extra-cmake-modules-5.19.0.tar.xz"; - sha256 = "1dl3hhbara7iswb5wsc5dp17ar3ljw5f0nrncl8vry9smaz2zl63"; - name = "extra-cmake-modules-5.19.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/frameworkintegration-5.19.0.tar.xz"; - sha256 = "00la7p7wcyqpxyi73h4fjrmm9d2gqzdaljn4468xya4bfns5ijy3"; - name = "frameworkintegration-5.19.0.tar.xz"; - }; - }; - kactivities = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kactivities-5.19.0.tar.xz"; - sha256 = "0yml1sbn3z4jd4vsfs25kqrl03pmlcgamzbgpw3248sabhyg7ks3"; - name = "kactivities-5.19.0.tar.xz"; - }; - }; - kapidox = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kapidox-5.19.0.tar.xz"; - sha256 = "0a9731xrkd6mnqh72592rx6gfnxxdfd7xl8pdpgdn7qs3394k1yz"; - name = "kapidox-5.19.0.tar.xz"; - }; - }; - karchive = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/karchive-5.19.0.tar.xz"; - sha256 = "043spmi7s2d1bj8d3wbgzbhisip6h92kqjhlvg8gyv0a7vy54ymv"; - name = "karchive-5.19.0.tar.xz"; - }; - }; - kauth = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kauth-5.19.0.tar.xz"; - sha256 = "0fm9ih2hkh2rpmlf98yw8z1r5bn2qmpva2k7mrv6ijd5h767fxss"; - name = "kauth-5.19.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kbookmarks-5.19.0.tar.xz"; - sha256 = "0q418jpdc348nqgdavsmxxka4g8sldpdi9n89i1pllfmq10kw9sd"; - name = "kbookmarks-5.19.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcmutils-5.19.0.tar.xz"; - sha256 = "0qhdjb3zvqq9ycfgb52lz4flgipyplj5ksz8h8y71bbs4w6lazd8"; - name = "kcmutils-5.19.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcodecs-5.19.0.tar.xz"; - sha256 = "1rzp314fv9n5168j7nhv1c8fjaszpmgdx6javrx4w0hyrjdfkg66"; - name = "kcodecs-5.19.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcompletion-5.19.0.tar.xz"; - sha256 = "05n0y5kf3bcc4wgn6k0js5cravv1k93xxzrgapm21323qgvfagwd"; - name = "kcompletion-5.19.0.tar.xz"; - }; - }; - kconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfig-5.19.0.tar.xz"; - sha256 = "0nk5hfl8yh0kgaa7xi0cc05dl6nf7prvbvxv0i99207xh9dafdmm"; - name = "kconfig-5.19.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfigwidgets-5.19.0.tar.xz"; - sha256 = "1nld27chcjwjgwv76s2j77ifmca235yp10bm08rjmvnfn6778ypv"; - name = "kconfigwidgets-5.19.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcoreaddons-5.19.0.tar.xz"; - sha256 = "07sm0givfdx28p302fkynzsd3xkpn1hbs43d4rscyx18yxfsldcw"; - name = "kcoreaddons-5.19.0.tar.xz"; - }; - }; - kcrash = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcrash-5.19.0.tar.xz"; - sha256 = "1dy03gp1sj96wn0zfa0dpbvz8pz0ia1j7p1wcif3iqk55pjxdgyl"; - name = "kcrash-5.19.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdbusaddons-5.19.0.tar.xz"; - sha256 = "1bb5aik0kl3kab5399drfjxrm8iysgkf813xgr0y4k64c9kwfp28"; - name = "kdbusaddons-5.19.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdeclarative-5.19.0.tar.xz"; - sha256 = "03g02zy7wjzmpvqzxx32z8ap7jyj9sf432g1d3csb0dcbx2ny52g"; - name = "kdeclarative-5.19.0.tar.xz"; - }; - }; - kded = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kded-5.19.0.tar.xz"; - sha256 = "0nyvg0h2aqy7qr57bad6wyc2rmcv9nhdq0py4fxc3irb6516p9hz"; - name = "kded-5.19.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kdelibs4support-5.19.0.tar.xz"; - sha256 = "0iqnb2j6gfy8006arwv65vljfhxdnk6aia0zppngb481jnd9n2pn"; - name = "kdelibs4support-5.19.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesignerplugin-5.19.0.tar.xz"; - sha256 = "11inmvyair796rx4842naf1dnxqvc6bqqzrv700ycvisad646ws5"; - name = "kdesignerplugin-5.19.0.tar.xz"; - }; - }; - kdesu = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesu-5.19.0.tar.xz"; - sha256 = "19w8m7ji61bpd368lzkwlizcwa1l968l568lksgm2mm9pnyjjhgz"; - name = "kdesu-5.19.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdewebkit-5.19.0.tar.xz"; - sha256 = "04b5qanhxggffnvmi28lspyi8kj4kq7mxhxndar9fmkzzgvy70hj"; - name = "kdewebkit-5.19.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdnssd-5.19.0.tar.xz"; - sha256 = "15a8w2i29mrbhadw6y123mr0cc45ijabnwdfp3lbkd40lk8nq314"; - name = "kdnssd-5.19.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdoctools-5.19.0.tar.xz"; - sha256 = "06g77n9wxpiv4skc1kz794ppfb2mkmd3fgn6an5kr301xc76cnpn"; - name = "kdoctools-5.19.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kemoticons-5.19.0.tar.xz"; - sha256 = "0fiix2sf2wrvmrpx8whdr1bzm7gbv7pvg02y47w5bl6s9gh176g5"; - name = "kemoticons-5.19.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kfilemetadata-5.19.0.tar.xz"; - sha256 = "11j8if3xhp3xxwibwm6nxb4lh8wx40ni3zf5hki327pxv4vpq3qr"; - name = "kfilemetadata-5.19.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kglobalaccel-5.19.0.tar.xz"; - sha256 = "021j98f7217m83aqxpamg0lzlaiskdaqsd9iabc8wrp1g0nkm05d"; - name = "kglobalaccel-5.19.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kguiaddons-5.19.0.tar.xz"; - sha256 = "019xaf7vpgifcw8wibli9d2b50brhgdaypsqknh6mqq8q9g06jhy"; - name = "kguiaddons-5.19.0.tar.xz"; - }; - }; - khtml = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/khtml-5.19.0.tar.xz"; - sha256 = "0hqa54a9nxy954vy8gf52y89xd3ibz9b4jgh6w347b1alp1zn145"; - name = "khtml-5.19.0.tar.xz"; - }; - }; - ki18n = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ki18n-5.19.0.tar.xz"; - sha256 = "0v3arc20y5d8afm9zfrz1skd2xg3ng62cq1xvxiq645w6mxf7y05"; - name = "ki18n-5.19.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kiconthemes-5.19.0.tar.xz"; - sha256 = "0riicirgda3w2b30dzsa2lq9xrr4y04qwhxyzq1p8gn2x4pp3g3n"; - name = "kiconthemes-5.19.0.tar.xz"; - }; - }; - kidletime = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kidletime-5.19.0.tar.xz"; - sha256 = "0jlbzqv36ddhfhk8xkkgw0xhq8s371z9ama1cyv2xq8kk4vjywc6"; - name = "kidletime-5.19.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kimageformats-5.19.0.tar.xz"; - sha256 = "1ydizc6b0ncndazk62h8y249yfcx381pwzyivfpka1f69zfgyvv5"; - name = "kimageformats-5.19.0.tar.xz"; - }; - }; - kinit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kinit-5.19.0.tar.xz"; - sha256 = "03l7pijqdnnsfg6yz9p73p7xa86sldayggl6rc5hpkzmgyczcfzm"; - name = "kinit-5.19.0.tar.xz"; - }; - }; - kio = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kio-5.19.0.tar.xz"; - sha256 = "0c7smp7cajivx53shy65mp9zcc51pha9iyvh37dggfflxy3xf9nv"; - name = "kio-5.19.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemmodels-5.19.0.tar.xz"; - sha256 = "0skmim986qnncbzd84vm1wp1fr41jn04af2dgckirsk23d35bln7"; - name = "kitemmodels-5.19.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemviews-5.19.0.tar.xz"; - sha256 = "118zv46mvrfwbvl06bb1m8axv92wnp4pfs36hsxvnjl7gfjk5xjn"; - name = "kitemviews-5.19.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kjobwidgets-5.19.0.tar.xz"; - sha256 = "1qzf8nzy8rxkdai9aj2lyrww90245v0p2q115xiz73bsg9rahmji"; - name = "kjobwidgets-5.19.0.tar.xz"; - }; - }; - kjs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjs-5.19.0.tar.xz"; - sha256 = "08m01762hb25vm020g3v37bh40cgvcfrj45ql135klx96x9imfaf"; - name = "kjs-5.19.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjsembed-5.19.0.tar.xz"; - sha256 = "1wmkgy8jgm21y2cvcbv1fdv29dxxla8n6ws78kzzbbw4cgqwwl48"; - name = "kjsembed-5.19.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kmediaplayer-5.19.0.tar.xz"; - sha256 = "1vhqr2c7q8vwzdj29vpmfjfhyal8wp9ffirrnqc98vb6sffs85ay"; - name = "kmediaplayer-5.19.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knewstuff-5.19.0.tar.xz"; - sha256 = "12acd12vxk9z83zg3yz8lvmmb8737z9lzd4hs9a3jcs1z5k2nhb4"; - name = "knewstuff-5.19.0.tar.xz"; - }; - }; - knotifications = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifications-5.19.0.tar.xz"; - sha256 = "0grgm0ws16gp2j77nslqpl1jpxbi0m6g59zr7v1xnmzdk2j6n4av"; - name = "knotifications-5.19.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifyconfig-5.19.0.tar.xz"; - sha256 = "161brvryxzdkny7sf6icn1jpyi6rnw6jc808gdf5g41v50xpnxfj"; - name = "knotifyconfig-5.19.0.tar.xz"; - }; - }; - kpackage = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpackage-5.19.0.tar.xz"; - sha256 = "1km4sjgxfljp2pnjnzj48q3c574zvj7341a57n4ifhjwj37yzxdv"; - name = "kpackage-5.19.0.tar.xz"; - }; - }; - kparts = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kparts-5.19.0.tar.xz"; - sha256 = "05g59x2mrqygawzcwgw3igl5n96l649h0kpzh37sfq4i8kg15g7l"; - name = "kparts-5.19.0.tar.xz"; - }; - }; - kpeople = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpeople-5.19.0.tar.xz"; - sha256 = "1ksf6g71li1xk4q98cvwkam8m8g32x2815kj1gfwbg4g6iw74w98"; - name = "kpeople-5.19.0.tar.xz"; - }; - }; - kplotting = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kplotting-5.19.0.tar.xz"; - sha256 = "169x4m9ms8yhfha8zclnl8wrnfhfqshpwwg4b5bd046pcrkqmnqq"; - name = "kplotting-5.19.0.tar.xz"; - }; - }; - kpty = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpty-5.19.0.tar.xz"; - sha256 = "0289vzfjwppwqj9h03flzhwm18dnxz11hqhdhr9990x7rw6a4n03"; - name = "kpty-5.19.0.tar.xz"; - }; - }; - kross = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kross-5.19.0.tar.xz"; - sha256 = "1nv7mrhn7wa4bs2a164x42d3b37akyvhkxqs8cg5fqp4vr2wkw0p"; - name = "kross-5.19.0.tar.xz"; - }; - }; - krunner = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/krunner-5.19.0.tar.xz"; - sha256 = "054s8309lxi27gpbg7iygbcxsp0pwrzbzww3h8zp2a9yiic4s5mx"; - name = "krunner-5.19.0.tar.xz"; - }; - }; - kservice = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kservice-5.19.0.tar.xz"; - sha256 = "02lbia26r2462nwksizaxjfkhxfqqs732dp495yx8bjc7wcv3srm"; - name = "kservice-5.19.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktexteditor-5.19.0.tar.xz"; - sha256 = "0v3l44w4k43ajs81i8386hszk3x7rajjlb6z3jb7q98vhp91b5dp"; - name = "ktexteditor-5.19.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktextwidgets-5.19.0.tar.xz"; - sha256 = "1xydb76r6x1p10bkr2nlqg3md78jw8zvqad0h42dgvl4f5xvjknp"; - name = "ktextwidgets-5.19.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kunitconversion-5.19.0.tar.xz"; - sha256 = "11g1vhqkrb1k748drj7klkbb7jca3dybakcmcgqf53g8vxfih8kb"; - name = "kunitconversion-5.19.0.tar.xz"; - }; - }; - kwallet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwallet-5.19.0.tar.xz"; - sha256 = "0z0c62fdfx9syrq6z7bk0ihac4yqyxpycll7h3mijj29km4jnpjm"; - name = "kwallet-5.19.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwidgetsaddons-5.19.0.tar.xz"; - sha256 = "0b85ng0dj5gpzifqmhyzgx61nb37vq7d0gvfpfazlcp5n27ywivm"; - name = "kwidgetsaddons-5.19.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwindowsystem-5.19.0.tar.xz"; - sha256 = "115xs34r74j9zcsw69glnh8w59iyh764n3gniawwrk23c6yb8fch"; - name = "kwindowsystem-5.19.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlgui-5.19.0.tar.xz"; - sha256 = "1al2xifiyvl3zpva9nqap8gb6vqfgmf2fnhkmymm02rwg4yn4gah"; - name = "kxmlgui-5.19.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlrpcclient-5.19.0.tar.xz"; - sha256 = "0lji7cxvh2lmjz42lx6ymz962gr4cyqfzksz0n5vgzfk5z0vq98g"; - name = "kxmlrpcclient-5.19.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/modemmanager-qt-5.19.0.tar.xz"; - sha256 = "05x9jicryjw9fj02arpya8xsh79rsnljnqjfpwbb7pi38f9i8v4w"; - name = "modemmanager-qt-5.19.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/networkmanager-qt-5.19.0.tar.xz"; - sha256 = "0wi0mkygzbvvyil1nyzc3ihgilvpx6j7caqaa9k38p85g93vsq13"; - name = "networkmanager-qt-5.19.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/oxygen-icons5-5.19.0.tar.xz"; - sha256 = "09vfwcyidj3bl0qr4sq78bkc69zp9x8dwp8bsay5y05q8591dkg0"; - name = "oxygen-icons5-5.19.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/plasma-framework-5.19.0.tar.xz"; - sha256 = "1588r1jag0s9hhw4qq7mr2mcdd3d9az5ngb3z1l58xdhvfcc4497"; - name = "plasma-framework-5.19.0.tar.xz"; - }; - }; - solid = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/solid-5.19.0.tar.xz"; - sha256 = "02bnvhscb55r6q5hkyh7rqi6zsc3r974y3x9shi8l0xbs78snkgz"; - name = "solid-5.19.0.tar.xz"; - }; - }; - sonnet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/sonnet-5.19.0.tar.xz"; - sha256 = "02ringh0wyiq1n19c200bcyf5x2w5jhw0pcxvfjzjai1sjig03x7"; - name = "sonnet-5.19.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/threadweaver-5.19.0.tar.xz"; - sha256 = "1jm1sw7xq76s2ggghm6qqdn7452myy9n7p5zzdb01qbaw2y1x4pw"; - name = "threadweaver-5.19.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.19/threadweaver.nix deleted file mode 100644 index 52817921cc723..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/bluedevil.nix b/pkgs/desktops/kde-5/plasma-5.5/bluedevil.nix deleted file mode 100644 index 6596c246202f0..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/bluedevil.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, bluez-qt, kcoreaddons -, kdbusaddons, kded, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, kwindowsystem, makeQtWrapper, plasma-framework -, qtdeclarative, shared_mime_info -}: - -plasmaPackage { - name = "bluedevil"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper shared_mime_info - ]; - buildInputs = [ - kcoreaddons kdbusaddons kded kiconthemes knotifications - kwidgetsaddons - ]; - propagatedBuildInputs = [ - bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative - ]; - propagatedUserEnvPkgs = [ bluez-qt ]; - postInstall = '' - wrapQtProgram "$out/bin/bluedevil-wizard" - wrapQtProgram "$out/bin/bluedevil-sendfile" - # Fix the location of logic.js for the plasmoid - ln -s $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/code/logic.js $out/share/plasma/plasmoids/org.kde.plasma.bluetooth/contents/ui/logic.js - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/breeze-gtk.nix b/pkgs/desktops/kde-5/plasma-5.5/breeze-gtk.nix deleted file mode 100644 index 179f15dc87633..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/breeze-gtk.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -}: - -plasmaPackage { - name = "breeze-gtk"; - nativeBuildInputs = [ extra-cmake-modules ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/breeze-qt4.nix b/pkgs/desktops/kde-5/plasma-5.5/breeze-qt4.nix deleted file mode 100644 index f8092bc9d376c..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/breeze-qt4.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ plasmaPackage -, automoc4 -, cmake -, perl -, pkgconfig -, kdelibs -, qt4 -, xproto -}: - -plasmaPackage { - name = "breeze-qt4"; - sname = "breeze"; - buildInputs = [ - kdelibs - qt4 - xproto - ]; - nativeBuildInputs = [ - automoc4 - cmake - perl - pkgconfig - ]; - cmakeFlags = [ - "-DUSE_KDE4=ON" - "-DQT_QMAKE_EXECUTABLE=${qt4}/bin/qmake" - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma-5.5/breeze-qt5.nix deleted file mode 100644 index 63ade168805d4..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/breeze-qt5.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, frameworkintegration -, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons -, ki18n, kwindowsystem, makeQtWrapper, plasma-framework, qtx11extras -}: - -plasmaPackage { - name = "breeze-qt5"; - sname = "breeze"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons - ]; - propagatedBuildInputs = [ - frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras - ]; - cmakeFlags = [ "-DUSE_Qt4=OFF" ]; - postInstall = '' - wrapQtProgram "$out/bin/breeze-settings5" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/default.nix b/pkgs/desktops/kde-5/plasma-5.5/default.nix deleted file mode 100644 index a4f5c7c232042..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/default.nix +++ /dev/null @@ -1,88 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib stdenv symlinkJoin; - - kdeApps = pkgs.kdeApps_15_12; - - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - mirror = "mirror://kde"; - - packages = self: with self; { - plasmaPackage = args: - let - inherit (args) name; - sname = args.sname or name; - inherit (srcs."${sname}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - outputs = args.outputs or [ "dev" "out" ]; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ttuegel ]; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - bluedevil = callPackage ./bluedevil.nix {}; - breeze-gtk = callPackage ./breeze-gtk.nix {}; - breeze-qt4 = callPackage ./breeze-qt4.nix {}; - breeze-qt5 = callPackage ./breeze-qt5.nix {}; - breeze = - let - version = (builtins.parseDrvName breeze-qt5.name).version; - in - symlinkJoin "breeze-${version}" - (map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]); - kde-cli-tools = callPackage ./kde-cli-tools.nix {}; - kde-gtk-config = callPackage ./kde-gtk-config {}; - kdecoration = callPackage ./kdecoration.nix {}; - kdeplasma-addons = callPackage ./kdeplasma-addons.nix {}; - kgamma5 = callPackage ./kgamma5.nix {}; - khelpcenter = callPackage ./khelpcenter.nix {}; - khotkeys = callPackage ./khotkeys.nix {}; - kinfocenter = callPackage ./kinfocenter.nix {}; - kmenuedit = callPackage ./kmenuedit.nix {}; - kscreen = callPackage ./kscreen.nix {}; - kscreenlocker = callPackage ./kscreenlocker.nix {}; - ksshaskpass = callPackage ./ksshaskpass.nix {}; - ksysguard = callPackage ./ksysguard.nix {}; - kwayland = callPackage ./kwayland.nix {}; - kwin = callPackage ./kwin {}; - kwrited = callPackage ./kwrited.nix {}; - libkscreen = callPackage ./libkscreen {}; - libksysguard = callPackage ./libksysguard {}; - milou = callPackage ./milou.nix {}; - oxygen = callPackage ./oxygen.nix {}; - plasma-desktop = callPackage ./plasma-desktop {}; - plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; - plasma-nm = callPackage ./plasma-nm {}; - plasma-pa = callPackage ./plasma-pa.nix {}; - plasma-workspace = callPackage ./plasma-workspace {}; - plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; - polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; - powerdevil = callPackage ./powerdevil.nix {}; - startkde = callPackage ./startkde {}; - systemsettings = callPackage ./systemsettings.nix {}; - }; - -in packages diff --git a/pkgs/desktops/kde-5/plasma-5.5/fetchsrcs.sh b/pkgs/desktops/kde-5/plasma-5.5/fetchsrcs.sh deleted file mode 100755 index d2b426b85d60b..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gawk gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/plasma/5.5.5/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/desktops/kde-5/plasma-5.5/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma-5.5/kde-cli-tools.nix deleted file mode 100644 index 7f19af6959ec2..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kde-cli-tools.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcmutils, kconfig -, kdelibs4support, kdesu, kdoctools, ki18n, kiconthemes -, kwindowsystem, makeQtWrapper, qtsvg, qtx11extras -}: - -plasmaPackage { - name = "kde-cli-tools"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcmutils kconfig kdesu kiconthemes - ]; - propagatedBuildInputs = [ - kdelibs4support ki18n kwindowsystem qtsvg qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kmimetypefinder5" - wrapQtProgram "$out/bin/ksvgtopng5" - wrapQtProgram "$out/bin/ktraderclient5" - wrapQtProgram "$out/bin/kioclient5" - wrapQtProgram "$out/bin/kdecp5" - wrapQtProgram "$out/bin/keditfiletype5" - wrapQtProgram "$out/bin/kcmshell5" - wrapQtProgram "$out/bin/kdemv5" - wrapQtProgram "$out/bin/kstart5" - wrapQtProgram "$out/bin/kde-open5" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/0001-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/0001-follow-symlinks.patch deleted file mode 100644 index 759eda4cc134c..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/0001-follow-symlinks.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 33b25c2e3c7a002c7f726cd79fc4bab22b1299be Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Tue, 27 Oct 2015 18:07:54 -0500 -Subject: [PATCH] follow symlinks - ---- - src/appearancegtk2.cpp | 2 +- - src/iconthemesmodel.cpp | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/appearancegtk2.cpp b/src/appearancegtk2.cpp -index b1e0b52..095cddc 100644 ---- a/src/appearancegtk2.cpp -+++ b/src/appearancegtk2.cpp -@@ -73,7 +73,7 @@ QString AppearanceGTK2::themesGtkrcFile(const QString& themeName) const - QStringList themes=installedThemes(); - themes=themes.filter(QRegExp("/"+themeName+"/?$")); - if(themes.size()==1) { -- QDirIterator it(themes.first(), QDirIterator::Subdirectories); -+ QDirIterator it(themes.first(), QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while(it.hasNext()) { - it.next(); - if(it.fileName()=="gtkrc") { -diff --git a/src/iconthemesmodel.cpp b/src/iconthemesmodel.cpp -index 07c7ad7..b04d978 100644 ---- a/src/iconthemesmodel.cpp -+++ b/src/iconthemesmodel.cpp -@@ -46,7 +46,7 @@ QList IconThemesModel::installedThemesPaths() - - foreach(const QString& dir, dirs) { - QDir userIconsDir(dir); -- QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs|QDir::NoSymLinks); -+ QDirIterator it(userIconsDir.path(), QDir::NoDotAndDotDot|QDir::AllDirs); - while(it.hasNext()) { - QString currentPath = it.next(); - QDir dir(currentPath); --- -2.6.2 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix deleted file mode 100644 index ab8867520b380..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, glib -, gtk2 -, gtk3 -, karchive -, kcmutils -, kconfigwidgets -, ki18n -, kiconthemes -, kio -, knewstuff -}: - -plasmaPackage { - name = "kde-gtk-config"; - patches = [ ./0001-follow-symlinks.patch ]; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes - knewstuff - ]; - propagatedBuildInputs = [ ki18n kio ]; - cmakeFlags = [ - "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" - "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kdecoration.nix b/pkgs/desktops/kde-5/plasma-5.5/kdecoration.nix deleted file mode 100644 index eb65f7f90afbe..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kdecoration.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ plasmaPackage, extra-cmake-modules }: - -plasmaPackage { - name = "kdecoration"; - nativeBuildInputs = [ extra-cmake-modules ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.5/kdeplasma-addons.nix deleted file mode 100644 index d6a96a3276d75..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kdeplasma-addons.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig -, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n -, kio, knewstuff, kross, krunner, kservice, kunitconversion -, plasma-framework, qtdeclarative, qtx11extras -}: - -plasmaPackage { - name = "kdeplasma-addons"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - ibus kconfig kconfigwidgets kcoreaddons kcmutils - knewstuff kservice kunitconversion - ]; - propagatedBuildInputs = [ - kdelibs4support kio kross krunner plasma-framework qtdeclarative - qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kgamma5.nix b/pkgs/desktops/kde-5/plasma-5.5/kgamma5.nix deleted file mode 100644 index 965c33e6eef8d..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kgamma5.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kdelibs4support -, qtx11extras -}: - -plasmaPackage { - name = "kgamma5"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - propagatedBuildInputs = [ kdelibs4support qtx11extras ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix b/pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix deleted file mode 100644 index 6ba860b9dfb26..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/khelpcenter.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdbusaddons, ki18n, kinit, kcmutils, kdelibs4support -, khtml, kservice, makeQtWrapper -}: - -plasmaPackage { - name = "khelpcenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kinit kcmutils kservice - ]; - propagatedBuildInputs = [ kdelibs4support khtml ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/khelpcenter" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/khotkeys.nix b/pkgs/desktops/kde-5/plasma-5.5/khotkeys.nix deleted file mode 100644 index 141320e6b3e69..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/khotkeys.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kdbusaddons, kdelibs4support, kglobalaccel, ki18n, kio, kxmlgui -, plasma-framework, plasma-workspace, qtx11extras -}: - -plasmaPackage { - name = "khotkeys"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kdbusaddons kxmlgui - ]; - propagatedBuildInputs = [ - kdelibs4support kglobalaccel ki18n kio plasma-framework - plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kinfocenter.nix b/pkgs/desktops/kde-5/plasma-5.5/kinfocenter.nix deleted file mode 100644 index ed717790cd0d8..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kinfocenter.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcmutils -, kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons -, kdeclarative, kdelibs4support, ki18n, kiconthemes, kio, kpackage -, kservice, kwidgetsaddons, kxmlgui, libraw1394, makeQtWrapper -, pciutils, solid -}: - -plasmaPackage { - name = "kinfocenter"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcmutils kcompletion kconfig kconfigwidgets kcoreaddons - kdbusaddons kiconthemes kpackage kservice kwidgetsaddons - kxmlgui libraw1394 pciutils solid - ]; - propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ]; - postInstall = '' - wrapQtProgram "$out/bin/kinfocenter" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix b/pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix deleted file mode 100644 index 3834ca1328f89..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kmenuedit.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui -, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper -}: - -plasmaPackage { - name = "kmenuedit"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kxmlgui kdbusaddons kiconthemes - ]; - propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kmenuedit" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix deleted file mode 100644 index a521a79936281..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kconfig, kconfigwidgets -, kdbusaddons, kglobalaccel, ki18n, kwidgetsaddons, kxmlgui -, libkscreen, makeQtWrapper, qtdeclarative, qtgraphicaleffects -}: - -plasmaPackage { - name = "kscreen"; - nativeBuildInputs = [ - extra-cmake-modules - makeQtWrapper - ]; - buildInputs = [ - kconfig - kconfigwidgets - kdbusaddons - kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ - kglobalaccel - ki18n - libkscreen - qtdeclarative - qtgraphicaleffects - ]; - postInstall = '' - wrapQtProgram "$out/bin/kscreen-console" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma-5.5/kscreenlocker.nix deleted file mode 100644 index 562797b546e9b..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kscreenlocker.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcmutils, kcrash, kdeclarative -, kdelibs4support, kdoctools, kglobalaccel, kidletime, kwayland -, libXcursor, pam, plasma-framework, qtdeclarative, wayland -}: - -plasmaPackage { - name = "kscreenlocker"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kcmutils kcrash kdelibs4support kglobalaccel kidletime kwayland - libXcursor pam wayland - ]; - propagatedBuildInputs = [ - kdeclarative plasma-framework qtdeclarative - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma-5.5/ksshaskpass.nix deleted file mode 100644 index f274512e027a1..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/ksshaskpass.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kcoreaddons -, ki18n, kwallet, kwidgetsaddons, makeQtWrapper -}: - -plasmaPackage { - name = "ksshaskpass"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kcoreaddons kwallet kwidgetsaddons ]; - propagatedBuildInputs = [ ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksshaskpass" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix b/pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix deleted file mode 100644 index d47f9215a41ab..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig -, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff -, kiconthemes, libksysguard, makeQtWrapper -}: - -plasmaPackage { - name = "ksysguard"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard - ]; - propagatedBuildInputs = [ kdelibs4support ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/ksysguardd" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwayland.nix b/pkgs/desktops/kde-5/plasma-5.5/kwayland.nix deleted file mode 100644 index e4d6eb631f957..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kwayland.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, wayland -}: - -plasmaPackage { - name = "kwayland"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - wayland - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwin/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.5/kwin/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 797a32fc5f83a..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kwin/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 78a4b554187c18fd86b62089f7730c4273fadd4c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:05:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - clients/aurorae/src/aurorae.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/clients/aurorae/src/aurorae.cpp b/clients/aurorae/src/aurorae.cpp -index 781c960..ad5f420 100644 ---- a/clients/aurorae/src/aurorae.cpp -+++ b/clients/aurorae/src/aurorae.cpp -@@ -211,7 +211,7 @@ void Helper::init() - // so let's try to locate our plugin: - QString pluginPath; - for (const QString &path : m_engine->importPathList()) { -- QDirIterator it(path, QDirIterator::Subdirectories); -+ QDirIterator it(path, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - QFileInfo fileInfo = it.fileInfo(); --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix deleted file mode 100644 index a09acb88aade6..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kwin/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, epoxy -, kactivities, kcompletion, kcmutils, kconfig, kconfigwidgets -, kcoreaddons, kcrash, kdeclarative, kdecoration, kglobalaccel -, ki18n, kiconthemes, kidletime, kinit, kio, knewstuff, knotifications -, kpackage, kscreenlocker, kservice, kwayland, kwidgetsaddons, kwindowsystem -, kxmlgui, libinput, libICE, libSM, plasma-framework, qtdeclarative -, qtmultimedia, qtscript, qtx11extras, udev, wayland, xcb-util-cursor -, makeQtWrapper -}: - -plasmaPackage { - name = "kwin"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - epoxy kcompletion kcmutils kconfig kconfigwidgets kcoreaddons - kcrash kdecoration kiconthemes kidletime kinit knewstuff knotifications - kpackage kservice kwayland kwidgetsaddons kxmlgui libinput libICE - libSM qtscript udev wayland xcb-util-cursor - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kscreenlocker - kwindowsystem plasma-framework qtdeclarative qtmultimedia qtx11extras - ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; - postInstall = '' - wrapQtProgram "$out/bin/kwin_x11" - wrapQtProgram "$out/bin/kwin_wayland" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/kwrited.nix b/pkgs/desktops/kde-5/plasma-5.5/kwrited.nix deleted file mode 100644 index a6ed9d9bb2877..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/kwrited.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kcoreaddons, ki18n, kpty -, knotifications, kdbusaddons -}: - -plasmaPackage { - name = "kwrited"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ]; - propagatedBuildInputs = [ ki18n ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/libkscreen/default.nix b/pkgs/desktops/kde-5/plasma-5.5/libkscreen/default.nix deleted file mode 100644 index 9fccbd6834c3e..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/libkscreen/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, libXrandr -, qtx11extras -}: - -plasmaPackage { - name = "libkscreen"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - libXrandr - ]; - propagatedBuildInputs = [ - qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/libksysguard/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/plasma-5.5/libksysguard/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index fbbb11ae7556b..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/libksysguard/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46164a50de4102d02ae9d1d480acdd4b12303db8 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 07:07:22 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - processui/scripting.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/processui/scripting.cpp b/processui/scripting.cpp -index efed8ff..841761a 100644 ---- a/processui/scripting.cpp -+++ b/processui/scripting.cpp -@@ -167,7 +167,7 @@ void Scripting::loadContextMenu() { - QStringList scripts; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, "ksysguard/scripts/", QStandardPaths::LocateDirectory); - Q_FOREACH (const QString& dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - scripts.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.5/libksysguard/default.nix deleted file mode 100644 index 402b3ce3beee9..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/libksysguard/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ fetchpatch, plasmaPackage, extra-cmake-modules, kauth, kcompletion -, kconfigwidgets, kcoreaddons, kservice, kwidgetsaddons -, kwindowsystem, plasma-framework, qtscript, qtwebkit, qtx11extras -, kconfig, ki18n, kiconthemes -}: - -plasmaPackage { - name = "libksysguard"; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - (fetchpatch { # should be included on update - name = "glibc-2.23-isnan.patch"; - url = https://github.com/KDE/libksysguard/commit/b0578798eb3.patch; - sha256 = "1my5nqp58c5azyi265j261a10wh047zxakprrnpl85mlg7bwskdh"; - }) - ]; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kservice - kwidgetsaddons qtscript qtwebkit - ]; - propagatedBuildInputs = [ - kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework - qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/milou.nix b/pkgs/desktops/kde-5/plasma-5.5/milou.nix deleted file mode 100644 index 760de2d79ab4e..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/milou.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, qtscript, qtdeclarative -, kcoreaddons, ki18n, kdeclarative, kservice, plasma-framework -, krunner -}: - -plasmaPackage { - name = "milou"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - qtscript kcoreaddons kservice - ]; - propagatedBuildInputs = [ - kdeclarative ki18n krunner plasma-framework qtdeclarative - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/oxygen.nix b/pkgs/desktops/kde-5/plasma-5.5/oxygen.nix deleted file mode 100644 index 02918100408ac..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/oxygen.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig -, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion -, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras -}: - -plasmaPackage { - name = "oxygen"; - nativeBuildInputs = [ - extra-cmake-modules makeQtWrapper - ]; - buildInputs = [ - kcmutils kconfig kdecoration kguiaddons kwidgetsaddons - kservice kcompletion - ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/oxygen-demo5" - wrapQtProgram "$out/bin/oxygen-settings5" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0001-qt-5.5-QML-import-paths.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0001-qt-5.5-QML-import-paths.patch deleted file mode 100644 index ead7452daa84d..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0001-qt-5.5-QML-import-paths.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 7c379686def9f15be1aa8fa4b5358124f7ed57c6 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Mon, 19 Oct 2015 18:45:36 -0500 -Subject: [PATCH 1/3] qt-5.5 QML import paths - ---- - applets/pager/package/contents/ui/main.qml | 2 +- - containments/desktop/package/contents/ui/FolderView.qml | 2 +- - containments/desktop/package/contents/ui/main.qml | 2 +- - containments/panel/contents/ui/main.qml | 2 +- - 4 files changed, 4 insertions(+), 4 deletions(-) - -diff --git a/applets/pager/package/contents/ui/main.qml b/applets/pager/package/contents/ui/main.qml -index 0c367c6..c9a82be 100644 ---- a/applets/pager/package/contents/ui/main.qml -+++ b/applets/pager/package/contents/ui/main.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddonsComponents - import org.kde.draganddrop 2.0 - import org.kde.plasma.private.pager 2.0 --import "utils.js" as Utils -+import "../code/utils.js" as Utils - - MouseArea { - id: root -diff --git a/containments/desktop/package/contents/ui/FolderView.qml b/containments/desktop/package/contents/ui/FolderView.qml -index 578ec87..04e088c 100644 ---- a/containments/desktop/package/contents/ui/FolderView.qml -+++ b/containments/desktop/package/contents/ui/FolderView.qml -@@ -27,7 +27,7 @@ import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 - - import org.kde.private.desktopcontainment.folder 0.1 as Folder --import "FolderTools.js" as FolderTools -+import "../code/FolderTools.js" as FolderTools - - Item { - id: main -diff --git a/containments/desktop/package/contents/ui/main.qml b/containments/desktop/package/contents/ui/main.qml -index 422e8f7..3c8906e 100644 ---- a/containments/desktop/package/contents/ui/main.qml -+++ b/containments/desktop/package/contents/ui/main.qml -@@ -29,7 +29,7 @@ import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons - - import org.kde.private.desktopcontainment.desktop 0.1 as Desktop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root -diff --git a/containments/panel/contents/ui/main.qml b/containments/panel/contents/ui/main.qml -index bad6ba0..b1fc331 100644 ---- a/containments/panel/contents/ui/main.qml -+++ b/containments/panel/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.components 2.0 as PlasmaComponents - import org.kde.kquickcontrolsaddons 2.0 - import org.kde.draganddrop 2.0 as DragDrop - --import "LayoutManager.js" as LayoutManager -+import "../code/LayoutManager.js" as LayoutManager - - DragDrop.DropArea { - id: root --- -2.6.3 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0002-hwclock.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0002-hwclock.patch deleted file mode 100644 index 17b01486d9289..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0002-hwclock.patch +++ /dev/null @@ -1,36 +0,0 @@ -From d0056fa6c1158408db169a7f5e6eb75691083094 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 22 Nov 2015 09:34:43 -0600 -Subject: [PATCH 2/3] hwclock - ---- - kcms/dateandtime/helper.cpp | 6 +----- - 1 file changed, 1 insertion(+), 5 deletions(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index e955f0c..5171753 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -48,10 +48,6 @@ - #include - #endif - --// We cannot rely on the $PATH environment variable, because D-Bus activation --// clears it. So we have to use a reasonable default. --static const QString exePath = QStringLiteral("/usr/sbin:/usr/bin:/sbin:/bin"); -- - int ClockHelper::ntp( const QStringList& ntpServers, bool ntpEnabled ) - { - int ret = 0; -@@ -227,7 +223,7 @@ int ClockHelper::tzreset() - - void ClockHelper::toHwclock() - { -- QString hwclock = KStandardDirs::findExe(QStringLiteral("hwclock"), exePath); -+ QString hwclock = "@hwclock@"; - if (!hwclock.isEmpty()) { - KProcess::execute(hwclock, QStringList() << QStringLiteral("--systohc")); - } --- -2.6.3 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0003-tzdir.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0003-tzdir.patch deleted file mode 100644 index aba97b032f8a7..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/0003-tzdir.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 0a8e2ae5cb64c5762408df920d99459b20d52b29 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 22 Nov 2015 09:39:24 -0600 -Subject: [PATCH 3/3] tzdir - ---- - kcms/dateandtime/helper.cpp | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/kcms/dateandtime/helper.cpp b/kcms/dateandtime/helper.cpp -index 5171753..92b5d9e 100644 ---- a/kcms/dateandtime/helper.cpp -+++ b/kcms/dateandtime/helper.cpp -@@ -181,7 +181,12 @@ int ClockHelper::tz( const QString& selectedzone ) - - val = selectedzone; - #else -- QString tz = "/usr/share/zoneinfo/" + selectedzone; -+ QString tzdir = QString::fromLocal8Bit(qgetenv("TZDIR")); -+ QString tz = tzdir + "/" + selectedzone; -+ if (tzdir.isEmpty()) { -+ // Standard Linux path -+ tz = "/usr/share/zoneinfo/" + selectedzone; -+ } - - if (QFile::exists(tz)) { // make sure the new TZ really exists - QFile::remove(QStringLiteral("/etc/localtime")); --- -2.6.3 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix deleted file mode 100644 index 5f27efc7f24ca..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix +++ /dev/null @@ -1,86 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, attica, baloo, boost, fontconfig, kactivities, kauth, kcmutils -, kdbusaddons, kdeclarative, kded, kdelibs4support, kemoticons -, kglobalaccel, ki18n, kitemmodels, knewstuff, knotifications -, knotifyconfig, kpeople, krunner, kwallet, kwin, phonon -, plasma-framework, plasma-workspace, qtdeclarative, qtx11extras -, qtsvg, libXcursor, libXft, libxkbfile, xf86inputevdev -, xf86inputsynaptics, xinput, xkeyboard_config, xorgserver -, libcanberra_kde, libpulseaudio, makeQtWrapper, utillinux -, qtquick1, qtquickcontrols -}: - -plasmaPackage rec { - name = "plasma-desktop"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - attica - boost - fontconfig - kcmutils - kdbusaddons - kded - kitemmodels - knewstuff - knotifications - knotifyconfig - kwallet - libcanberra_kde - libXcursor - libpulseaudio - libXft - libxkbfile - phonon - qtsvg - xf86inputevdev - xf86inputsynaptics - xkeyboard_config - xinput - ]; - propagatedBuildInputs = [ - baloo - kactivities - kauth - kdeclarative - kdelibs4support - kemoticons - kglobalaccel - ki18n - kpeople - krunner - kwin - plasma-framework - plasma-workspace - qtdeclarative - qtquick1 - qtquickcontrols - qtx11extras - ]; - patches = [ - ./0001-qt-5.5-QML-import-paths.patch - (substituteAll { - src = ./0002-hwclock.patch; - hwclock = "${utillinux}/sbin/hwclock"; - }) - ./0003-tzdir.patch - ]; - NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ]; - cmakeFlags = [ - "-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg" - "-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg" - ]; - postInstall = '' - wrapQtProgram "$out/bin/kaccess" - wrapQtProgram "$out/bin/solid-action-desktop-gen" - wrapQtProgram "$out/bin/knetattach" - wrapQtProgram "$out/bin/krdb" - wrapQtProgram "$out/bin/kapplymousetheme" - wrapQtProgram "$out/bin/kfontinst" - wrapQtProgram "$out/bin/kcm-touchpad-list-devices" - wrapQtProgram "$out/bin/kfontview" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix deleted file mode 100644 index 7088f45d64e29..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig -, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice -, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia -, taglib -}: - -plasmaPackage rec { - name = "plasma-mediacenter"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kconfig kcoreaddons kguiaddons kservice - qtdeclarative qtmultimedia taglib - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kfilemetadata ki18n kio - plasma-framework - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/0001-mobile-broadband-provider-info-path.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/0001-mobile-broadband-provider-info-path.patch deleted file mode 100644 index 79b5cfb437e26..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/0001-mobile-broadband-provider-info-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From faf13c97ff1192a201843b9d52f4002dbd9022af Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sun, 25 Oct 2015 09:09:27 -0500 -Subject: [PATCH] mobile-broadband-provider-info path - ---- - libs/editor/mobileproviders.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libs/editor/mobileproviders.cpp b/libs/editor/mobileproviders.cpp -index 568cb34..98a5992 100644 ---- a/libs/editor/mobileproviders.cpp -+++ b/libs/editor/mobileproviders.cpp -@@ -26,7 +26,7 @@ - - #include - --const QString MobileProviders::ProvidersFile = "/usr/share/mobile-broadband-provider-info/serviceproviders.xml"; -+const QString MobileProviders::ProvidersFile = "@mobile_broadband_provider_info@/share/mobile-broadband-provider-info/serviceproviders.xml"; - - bool localeAwareCompare(const QString & one, const QString & two) { - return one.localeAwareCompare(two) < 0; --- -2.6.2 - diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/default.nix deleted file mode 100644 index 249c6d8aac942..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-nm/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ plasmaPackage, substituteAll, extra-cmake-modules, kdoctools -, kcompletion, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdelibs4support, ki18n, kiconthemes, kinit, kio, kitemviews -, knotifications, kservice, kwallet, kwidgetsaddons, kwindowsystem -, kxmlgui, makeQtWrapper, mobile_broadband_provider_info -, modemmanager-qt, networkmanager-qt, openconnect, plasma-framework -, qca-qt5, qtdeclarative, solid -}: - -plasmaPackage { - name = "plasma-nm"; - patches = [ - (substituteAll { - src = ./0001-mobile-broadband-provider-info-path.patch; - inherit mobile_broadband_provider_info; - }) - ]; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes - kinit kitemviews knotifications kservice kwallet kwidgetsaddons - kxmlgui mobile_broadband_provider_info modemmanager-qt - networkmanager-qt openconnect qca-qt5 solid - ]; - propagatedBuildInputs = [ - kdeclarative kdelibs4support ki18n kio kwindowsystem plasma-framework - qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kde5-nm-connection-editor" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-pa.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-pa.nix deleted file mode 100644 index ff56d1199b152..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-pa.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, glib, kdoctools, kconfigwidgets -, kcoreaddons, kdeclarative, kglobalaccel, ki18n, libpulseaudio -, plasma-framework -}: - -plasmaPackage { - name = "plasma-pa"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - glib kconfigwidgets kcoreaddons libpulseaudio - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n plasma-framework - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace-wallpapers.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace-wallpapers.nix deleted file mode 100644 index bc87abcad153f..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace-wallpapers.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -}: - -plasmaPackage { - name = "plasma-workspace-wallpapers"; - nativeBuildInputs = [ - extra-cmake-modules - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix deleted file mode 100644 index 1a96c1eced2e0..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ plasmaPackage, lib, copyPathsToStore -, extra-cmake-modules, kdoctools -, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime -, kjsembed, knewstuff, knotifyconfig, kpackage, krunner -, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient -, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt -, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland -, libksysguard, kconfig, solid, qtquickcontrols -}: - -plasmaPackage { - name = "plasma-workspace"; - - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit - kjsembed knewstuff knotifyconfig kpackage - ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM - libXcursor networkmanager-qt pam phonon qtscript - wayland - ]; - propagatedBuildInputs = [ - baloo kactivities kdeclarative kdelibs4support kglobalaccel - kidletime krunner ktexteditor kwin libkscreen libksysguard - plasma-framework qtquick1 qtquickcontrols qtx11extras solid - ]; - - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - - postPatch = '' - substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 - ''; - - postInstall = '' - rm "$out/bin/startkde" - rm "$out/bin/startplasmacompositor" - rm "$out/lib/libexec/startplasma" - rm -r "$out/share/wayland-sessions" - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/qml-import-path.patch deleted file mode 100644 index 1d34001be597d..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/qml-import-path.patch +++ /dev/null @@ -1,104 +0,0 @@ -Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml -+++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl - import QtQuick.Layouts 1.1 - - import org.kde.plasma.core 2.0 as PlasmaCore --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: analogclock -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml -@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.plasma.workspace.components 2.0 - import org.kde.kcoreaddons 1.0 as KCoreAddons --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batteryItem -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.workspace.components 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - MouseArea { - id: root -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma - import org.kde.plasma.components 2.0 as Components - import org.kde.plasma.extras 2.0 as PlasmaExtras - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - FocusScope { - id: dialog -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.kcoreaddons 1.0 as KCoreAddons - import org.kde.kquickcontrolsaddons 2.0 --import "logic.js" as Logic -+import "../code/logic.js" as Logic - - Item { - id: batterymonitor -Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml -+++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml -@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 - import org.kde.plasma.core 2.0 as PlasmaCore - import org.kde.plasma.components 2.0 - import org.kde.kquickcontrolsaddons 2.0 --import "data.js" as Data -+import "../code/data.js" as Data - - Flow { - id: lockout -Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml -@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas - - import org.kde.plasma.private.notifications 1.0 - --import "uiproperties.js" as UiProperties -+import "../code/uiproperties.js" as UiProperties - - MouseEventListener { - id: notificationsApplet -Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml -=================================================================== ---- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma - // import org.kde.plasma.extras 2.0 as PlasmaExtras - - import org.kde.private.systemtray 2.0 as SystemTray --import "Layout.js" as LayoutManager -+import "../code/Layout.js" as LayoutManager - - Item { - id: root diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series deleted file mode 100644 index b9081298bd693..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/series +++ /dev/null @@ -1 +0,0 @@ -qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch deleted file mode 100644 index eea0ae4c199d2..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch +++ /dev/null @@ -1,372 +0,0 @@ -Index: plasma-workspace-5.5.5/startkde/startkde.cmake -=================================================================== ---- plasma-workspace-5.5.5.orig/startkde/startkde.cmake -+++ plasma-workspace-5.5.5/startkde/startkde.cmake -@@ -1,8 +1,36 @@ --#!/bin/sh -+#!@bash@ - # - # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) - # - -+set -x -+ -+# The KDE icon cache is supposed to update itself -+# automatically, but it uses the timestamp on the icon -+# theme directory as a trigger. Since in Nix the -+# timestamp is always the same, this doesn't work. So as -+# a workaround, nuke the icon cache on login. This isn't -+# perfect, since it may require logging out after -+# installing new applications to update the cache. -+# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html -+rm -fv $HOME/.cache/icon-cache.kcache -+ -+# Qt writes a weird ‘libraryPath’ line to -+# ~/.config/Trolltech.conf that causes the KDE plugin -+# paths of previous KDE invocations to be searched. -+# Obviously using mismatching KDE libraries is potentially -+# disastrous, so here we nuke references to the Nix store -+# in Trolltech.conf. A better solution would be to stop -+# Qt from doing this wackiness in the first place. -+if [ -e $HOME/.config/Trolltech.conf ]; then -+ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf -+fi -+ -+# (NixOS) We run kbuildsycoca5 before starting the user session because things -+# may be missing or moved if they have run nixos-rebuild and it may not be -+# possible for them to start Konsole to run it manually! -+@kbuildsycoca5@ -+ - if test "x$1" = x--failsafe; then - KDE_FAILSAFE=1 # General failsafe flag - KWIN_COMPOSE=N # Disable KWin's compositing -@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP - # we have to unset this for Darwin since it will screw up KDE's dynamic-loading - unset DYLD_FORCE_FLAT_NAMESPACE - --# in case we have been started with full pathname spec without being in PATH --bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` --if [ -n "$bindir" ]; then -- qbindir=`qtpaths --binaries-dir` -- qdbus=$qbindir/qdbus -- case $PATH in -- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; -- *) PATH=$bindir:$PATH; export PATH;; -- esac --else -- qdbus=qdbus --fi -- - # Check if a KDE session already is running and whether it's possible to connect to X --kcheckrunning -+@kcheckrunning@ - kcheckrunning_result=$? - if test $kcheckrunning_result -eq 0 ; then -- echo "KDE seems to be already running on this display." -- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null -+ echo "KDE seems to be already running on this display." -+ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display." - exit 1 - elif test $kcheckrunning_result -eq 2 ; then - echo "\$DISPLAY is not set or cannot connect to the X server." -- exit 1 -+ exit 1 - fi - - # Boot sequence: -@@ -57,13 +72,8 @@ fi - # * Then ksmserver is started which takes control of the rest of the startup sequence - - # We need to create config folder so we can write startupconfigkeys --if [ ${XDG_CONFIG_HOME} ]; then -- configDir=$XDG_CONFIG_HOME; --else -- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html --fi -- --mkdir -p $configDir -+configDir=$(@qtpaths@ --writable-path GenericConfigLocation) -+mkdir -p "$configDir" - - #This is basically setting defaults so we can use them with kstartupconfig5 - cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then -+ : # ok -+else -+ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -+ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -+ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -+ exit 1 -+fi -+ - ksplash_pid= - if test -z "$dl"; then - # the splashscreen and progress indicator - case "$ksplashrc_ksplash_engine" in - KSplashQML) -- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` -+ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` - ;; - None) - ;; -@@ -201,8 +199,7 @@ fi - # For anything else (that doesn't set env vars, or that needs a window manager), - # better use the Autostart folder. - --# TODO: Use GenericConfigLocation once we depend on Qt 5.4 --scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` -+scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g') - - # Add /env/ to the directory to locate the scripts to be sourced - for prefix in `echo $scriptpath`; do -@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override - usr_fdir=$HOME/.fonts - - if test -n "$KDEDIRS"; then -- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` -+ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'` - sys_odir=$kdedirs_first/share/fonts/override - sys_fdir=$kdedirs_first/share/fonts - else -@@ -245,23 +242,13 @@ fi - # add the user's dirs to the font path, as they might simply have been made - # read-only by the administrator, for whatever reason. - --test -d "$sys_odir" && xset +fp "$sys_odir" --test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") --test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") --test -d "$sys_fdir" && xset fp+ "$sys_fdir" -+test -d "$sys_odir" && @xset@ +fp "$sys_odir" -+test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" ) -+test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" ) -+test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir" - - # Ask X11 to rebuild its font list. --xset fp rehash -- --# Set a left cursor instead of the standard X11 "X" cursor, since I've heard --# from some users that they're confused and don't know what to do. This is --# especially necessary on slow machines, where starting KDE takes one or two --# minutes until anything appears on the screen. --# --# If the user has overwritten fonts, the cursor font may be different now --# so don't move this up. --# --xsetroot -cursor_name left_ptr -+@xset@ fp rehash - - # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap - if test -n "$GS_LIB" ; then -@@ -274,26 +261,6 @@ fi - - echo 'startkde: Starting up...' 1>&2 - --# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. --# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend --# to set it to a list of paths *not* including the KDE prefix if it's not /usr or --# /usr/local. --if test -z "$XDG_DATA_DIRS"; then -- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" --fi --export XDG_DATA_DIRS -- --# Make sure that D-Bus is running --if $qdbus >/dev/null 2>/dev/null; then -- : # ok --else -- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 -- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" -- exit 1 --fi -- -- - # Mark that full KDE session is running (e.g. Konqueror preloading works only - # with full KDE running). The KDE_FULL_SESSION property can be detected by - # any X client connected to the same X session, even if not launched -@@ -318,11 +285,11 @@ fi - # - KDE_FULL_SESSION=true - export KDE_FULL_SESSION --xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true -+@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true - - KDE_SESSION_VERSION=5 - export KDE_SESSION_VERSION --xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 -+@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 - - KDE_SESSION_UID=`id -ru` - export KDE_SESSION_UID -@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP - - # At this point all the environment is ready, let's send it to kwalletd if running - if test -n "$PAM_KWALLET_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN - fi - # ...and also to kwalletd5 - if test -n "$PAM_KWALLET5_LOGIN" ; then -- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -+ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN - fi - - # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -349,18 +316,18 @@ if test $? -ne 0; then - # Startup error - echo 'startkde: Could not sync environment to dbus.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not sync environment to dbus." -+ @xmessage@ -geometry 500x100 "Could not sync environment to dbus." - exit 1 - fi - - # We set LD_BIND_NOW to increase the efficiency of kdeinit. - # kdeinit unsets this variable before loading applications. --LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup -+LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup - if test $? -ne 0; then - # Startup error - echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." -+ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation." - exit 1 - fi - -@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag - # lock now and do the rest of the KDE startup underneath the locker. - KSMSERVEROPTIONS="" - test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" --kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS -+@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS - if test $? -eq 255; then - # Startup error - echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -+ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation." - fi - --wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` -+wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true` - - if test x"$wait_drkonqi"x = x"true"x ; then - # wait for remaining drkonqi instances with timeout (in seconds) -- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` -+ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900` - wait_drkonqi_counter=0 -- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do -+ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do - sleep 5 - wait_drkonqi_counter=$((wait_drkonqi_counter+5)) - if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then - # ask remaining drkonqis to die in a graceful way -- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do -- $qdbus "$address" "/MainApplication" "quit" -+ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do -+ @qdbus@ "$address" "/MainApplication" "quit" - done - break - fi -@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - - # Clean up --kdeinit5_shutdown -+@kdeinit5_shutdown@ - - unset KDE_FULL_SESSION --xprop -root -remove KDE_FULL_SESSION -+@xprop@ -root -remove KDE_FULL_SESSION - unset KDE_SESSION_VERSION --xprop -root -remove KDE_SESSION_VERSION -+@xprop@ -root -remove KDE_SESSION_VERSION - unset KDE_SESSION_UID - - echo 'startkde: Done.' 1>&2 diff --git a/pkgs/desktops/kde-5/plasma-5.5/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma-5.5/polkit-kde-agent.nix deleted file mode 100644 index 3fc3a441ac344..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/polkit-kde-agent.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ plasmaPackage -, extra-cmake-modules -, ki18n -, kwindowsystem -, kdbusaddons -, kwidgetsaddons -, kcoreaddons -, kcrash -, kconfig -, kiconthemes -, knotifications -, polkit-qt -}: - -plasmaPackage { - name = "polkit-kde-agent"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kdbusaddons - kwidgetsaddons - kcoreaddons - kcrash - kconfig - kiconthemes - knotifications - polkit-qt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.5/powerdevil.nix deleted file mode 100644 index 475e8878206ad..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/powerdevil.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kactivities -, kauth, kconfig, kdbusaddons, kdelibs4support, kglobalaccel, ki18n -, kidletime, kio, knotifyconfig, kwayland, libkscreen, plasma-workspace -, qtx11extras, solid, udev -}: - -plasmaPackage { - name = "powerdevil"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - buildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev - ]; - propagatedBuildInputs = [ - kactivities kauth kdelibs4support kglobalaccel ki18n kio kidletime - kwayland libkscreen plasma-workspace qtx11extras - ]; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/setup-hook.sh b/pkgs/desktops/kde-5/plasma-5.5/setup-hook.sh deleted file mode 100644 index a8d9b7e0e36f4..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -addToSearchPath XDG_DATA_DIRS @out@/share diff --git a/pkgs/desktops/kde-5/plasma-5.5/srcs.nix b/pkgs/desktops/kde-5/plasma-5.5/srcs.nix deleted file mode 100644 index f27b39033e2a3..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/srcs.nix +++ /dev/null @@ -1,309 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - bluedevil = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/bluedevil-5.5.5.tar.xz"; - sha256 = "10fm3gf28c4hwy628z8wy82j6n00z6xf0vad52jahwzz98w5xy9l"; - name = "bluedevil-5.5.5.tar.xz"; - }; - }; - breeze = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/breeze-5.5.5.tar.xz"; - sha256 = "0xxfykg1gsr65jb8jmkk6qr991cvdfibpb9228kb16kpfn73k45l"; - name = "breeze-5.5.5.tar.xz"; - }; - }; - breeze-gtk = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/breeze-gtk-5.5.5.tar.xz"; - sha256 = "047b5xrbpk2d1x1srxpx2j5sp0kjzfvgh1xaldirxpcla6jpjj65"; - name = "breeze-gtk-5.5.5.tar.xz"; - }; - }; - discover = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/discover-5.5.5.tar.xz"; - sha256 = "0asbn69k4agr0jyw249bnw8xhi9hnj18asij0h1a8r5wlqbqj22a"; - name = "discover-5.5.5.tar.xz"; - }; - }; - kde-cli-tools = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kde-cli-tools-5.5.5.tar.xz"; - sha256 = "19iggnanlxz1j2xx9l2p7wwf1471yic9fyjfhhk0wfj2z3ickmsh"; - name = "kde-cli-tools-5.5.5.tar.xz"; - }; - }; - kdecoration = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kdecoration-5.5.5.tar.xz"; - sha256 = "0ix4jnqm5jpfdhgr6r8j1mwasics22i63hacd6h8gj5klhbgsqvc"; - name = "kdecoration-5.5.5.tar.xz"; - }; - }; - kde-gtk-config = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kde-gtk-config-5.5.5.tar.xz"; - sha256 = "0b6xkpfy4da3vign82z186ghg61l6k9sisppmfgmy5ycqjp4yghq"; - name = "kde-gtk-config-5.5.5.tar.xz"; - }; - }; - kdeplasma-addons = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kdeplasma-addons-5.5.5.tar.xz"; - sha256 = "1l327fi0x3vljkj7f3113ryynxrsk16qhn0vpsdxc7f169vf4isx"; - name = "kdeplasma-addons-5.5.5.tar.xz"; - }; - }; - kgamma5 = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kgamma5-5.5.5.tar.xz"; - sha256 = "1597q98iw4dmkzm40525xlcjj3xfrgsmhp8djgm2yk92bjxy7ydj"; - name = "kgamma5-5.5.5.tar.xz"; - }; - }; - khelpcenter = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/khelpcenter-5.5.5.tar.xz"; - sha256 = "04q5rj5g882qzdzvxxil6668x77iwvbpqx0z8jzm5z80x0xrg44p"; - name = "khelpcenter-5.5.5.tar.xz"; - }; - }; - khotkeys = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/khotkeys-5.5.5.tar.xz"; - sha256 = "12rrgs7slais8xagv3rn06him4qq21cahlb1yh3gpz571mhyl1nj"; - name = "khotkeys-5.5.5.tar.xz"; - }; - }; - kinfocenter = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kinfocenter-5.5.5.tar.xz"; - sha256 = "1j76cfpilhjy97541l90fm6nsamlwa4q4ap7hrp65cdwi5lb08c2"; - name = "kinfocenter-5.5.5.tar.xz"; - }; - }; - kmenuedit = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kmenuedit-5.5.5.tar.xz"; - sha256 = "010fdfp7kawwhvg76ypzq4rs047xkc2gxz3cfifaybiz5z1y4mdj"; - name = "kmenuedit-5.5.5.tar.xz"; - }; - }; - kscreen = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kscreen-5.5.5.tar.xz"; - sha256 = "1a0fq2x30nnrq2r4slgmfziibbdjmbzh1n8q8ym1lj18j5zyhqcz"; - name = "kscreen-5.5.5.tar.xz"; - }; - }; - kscreenlocker = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kscreenlocker-5.5.5.tar.xz"; - sha256 = "00sq4ddb30sxdp6br9h8r4rb07hra3vqv0kxvqfdr50hhcq8dbbw"; - name = "kscreenlocker-5.5.5.tar.xz"; - }; - }; - ksshaskpass = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/ksshaskpass-5.5.5.tar.xz"; - sha256 = "0szw50wfwh8dvwm61m3azk96di6fr0ymvjhjqffy6ja41kslhp4a"; - name = "ksshaskpass-5.5.5.tar.xz"; - }; - }; - ksysguard = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/ksysguard-5.5.5.tar.xz"; - sha256 = "020b5fkkj3baqg7clhkvpjhqp5xl0gdzyh75b19sx4ba3akpqx5m"; - name = "ksysguard-5.5.5.tar.xz"; - }; - }; - kwallet-pam = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kwallet-pam-5.5.5.tar.xz"; - sha256 = "0dlkm1dm60fbnwdmfhiql6mkqrqkdpqi04qa6xxpccijb6h57h8r"; - name = "kwallet-pam-5.5.5.tar.xz"; - }; - }; - kwayland = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kwayland-5.5.5.tar.xz"; - sha256 = "04p6m9fgllarh7l449injjn5426bqfjwyab0d739p0ys6kdm9hqh"; - name = "kwayland-5.5.5.tar.xz"; - }; - }; - kwayland-integration = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kwayland-integration-5.5.5.tar.xz"; - sha256 = "1ijllnfxy5ackz6bbxffi31ibpsrmgg3abm74x1p2m6a5r4f6bj8"; - name = "kwayland-integration-5.5.5.tar.xz"; - }; - }; - kwin = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kwin-5.5.5.tar.xz"; - sha256 = "1i79qq9p0rfz6gjjx9m1kjskrnh2kkpvkgp20cw8akn1cgi755vm"; - name = "kwin-5.5.5.tar.xz"; - }; - }; - kwrited = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/kwrited-5.5.5.tar.xz"; - sha256 = "17hq5jknqaqdf571m3ahdf3dwvphrmxj3jxgl5bhrb9zh5whjsi3"; - name = "kwrited-5.5.5.tar.xz"; - }; - }; - libkscreen = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/libkscreen-5.5.5.tar.xz"; - sha256 = "1djv0h6vw4ijfsd281pxr3yxi24rjbg7kshpm6qhfn3gbhz7qbqv"; - name = "libkscreen-5.5.5.tar.xz"; - }; - }; - libksysguard = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/libksysguard-5.5.5.tar.xz"; - sha256 = "16ky6xmd60ga2a09kgd4111rhly1p26dv72xmda4n40zswd6k1j2"; - name = "libksysguard-5.5.5.tar.xz"; - }; - }; - milou = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/milou-5.5.5.tar.xz"; - sha256 = "1fzbni8lyrx858pd3b1365x84pmyjamxa5f56q2h3ahzdhb726l5"; - name = "milou-5.5.5.tar.xz"; - }; - }; - oxygen = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/oxygen-5.5.5.tar.xz"; - sha256 = "1hmzvpsh0rpp2aps77cs9w4fqdfa3y5fbq7mpx97sp2z072x6i12"; - name = "oxygen-5.5.5.tar.xz"; - }; - }; - plasma-desktop = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-desktop-5.5.5.tar.xz"; - sha256 = "12za7c6c28iccw0b7ccrwz0hj2pa71387334jdinl2a1f60xljb6"; - name = "plasma-desktop-5.5.5.tar.xz"; - }; - }; - plasma-mediacenter = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-mediacenter-5.5.5.tar.xz"; - sha256 = "1yixqsajxf9jp5n16n0zg53iypmp9c114lbnhlr5ni1a0dqgfc8j"; - name = "plasma-mediacenter-5.5.5.tar.xz"; - }; - }; - plasma-nm = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-nm-5.5.5.tar.xz"; - sha256 = "0xffyfw1pb53h686lfc1v9k5f2p3mjqgzi49h6j46l2zxd2wi9w4"; - name = "plasma-nm-5.5.5.tar.xz"; - }; - }; - plasma-pa = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-pa-5.5.5.tar.xz"; - sha256 = "1msmnci4id2qxj1453qizx3zsmdf2rpryy83c7j192izc25ry6sh"; - name = "plasma-pa-5.5.5.tar.xz"; - }; - }; - plasma-sdk = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-sdk-5.5.5.tar.xz"; - sha256 = "0301h0h1z5id0win0599qwhvxdxz6m881qadyzwxrvhysj3r1sd8"; - name = "plasma-sdk-5.5.5.tar.xz"; - }; - }; - plasma-workspace = { - version = "5.5.5.2"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-workspace-5.5.5.2.tar.xz"; - sha256 = "09kvzv2cjlv0bglik7723m373nvhvh3c4aaip2xkv5lbhxfydldy"; - name = "plasma-workspace-5.5.5.2.tar.xz"; - }; - }; - plasma-workspace-wallpapers = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/plasma-workspace-wallpapers-5.5.5.tar.xz"; - sha256 = "01mrrz6y81ypsd33ldpcz1llj13faqmrip5fg9fxqf6vjbh7jlcp"; - name = "plasma-workspace-wallpapers-5.5.5.tar.xz"; - }; - }; - polkit-kde-agent = { - version = "1-5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/polkit-kde-agent-1-5.5.5.tar.xz"; - sha256 = "0pcwzb747gjp2s68i3apv5q2cfl3igkf1hsx0v1j1y7sk4diqkj9"; - name = "polkit-kde-agent-1-5.5.5.tar.xz"; - }; - }; - powerdevil = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/powerdevil-5.5.5.tar.xz"; - sha256 = "1sb046pyir6x75r2gpqcq6765igpdc0hl9g5jams6j3l65ivzgvk"; - name = "powerdevil-5.5.5.tar.xz"; - }; - }; - sddm-kcm = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/sddm-kcm-5.5.5.tar.xz"; - sha256 = "0zpl6wfpgvmkf80aqn4b46wrpk1a81yz7srxcnw857xyhvw31m6g"; - name = "sddm-kcm-5.5.5.tar.xz"; - }; - }; - systemsettings = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/systemsettings-5.5.5.tar.xz"; - sha256 = "183sb898f1452ljdk11k6wqy4dgzlgnicjlrygjfgvw9sz0vgn90"; - name = "systemsettings-5.5.5.tar.xz"; - }; - }; - user-manager = { - version = "5.5.5"; - src = fetchurl { - url = "${mirror}/stable/plasma/5.5.5/user-manager-5.5.5.tar.xz"; - sha256 = "1g9fm1i05mzmjs3c5fsg45pf8nd28vhh7g5awbpd397z586gr44y"; - name = "user-manager-5.5.5.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix b/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix deleted file mode 100644 index 30e986c21b4b0..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/startkde/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, lib, runCommand -, dbus, qttools, socat -, gnugrep, gnused -, kconfig, kinit, kservice -, plasma-workspace -, xmessage, xprop, xsetroot -}: - -let - - env = { - inherit (stdenv) shell; - paths = builtins.map (pkg: pkg.out or pkg) - [ - dbus qttools socat - gnugrep gnused - kconfig kinit kservice - plasma-workspace - xmessage xprop xsetroot - ]; - }; - -in runCommand "startkde" env '' - prefix_PATH= - for pkg in $paths; do - addToSearchPath prefix_PATH "$pkg/bin" - addToSearchPath prefix_PATH "$pkg/lib/libexec" - addToSearchPath prefix_PATH "$pkg/lib/libexec/kf5" - done - substitute ${./startkde.sh} "$out" --subst-var shell --subst-var prefix_PATH - chmod +x "$out" -'' diff --git a/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh b/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh deleted file mode 100755 index d839226a45624..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/startkde/startkde.sh +++ /dev/null @@ -1,334 +0,0 @@ -#!@shell@ - -PATH="@prefix_PATH@:$PATH" - -# The KDE icon cache is supposed to update itself -# automatically, but it uses the timestamp on the icon -# theme directory as a trigger. Since in Nix the -# timestamp is always the same, this doesn't work. So as -# a workaround, nuke the icon cache on login. This isn't -# perfect, since it may require logging out after -# installing new applications to update the cache. -# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html -rm -fv $HOME/.cache/icon-cache.kcache - -# Qt writes a weird ‘libraryPath’ line to -# ~/.config/Trolltech.conf that causes the KDE plugin -# paths of previous KDE invocations to be searched. -# Obviously using mismatching KDE libraries is potentially -# disastrous, so here we nuke references to the Nix store -# in Trolltech.conf. A better solution would be to stop -# Qt from doing this wackiness in the first place. -if [ -e $HOME/.config/Trolltech.conf ]; then - sed -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf -fi - -if test "x$1" = x--failsafe; then - KDE_FAILSAFE=1 # General failsafe flag - KWIN_COMPOSE=N # Disable KWin's compositing - QT_XCB_FORCE_SOFTWARE_OPENGL=1 - export KWIN_COMPOSE KDE_FAILSAFE QT_XCB_FORCE_SOFTWARE_OPENGL -fi - -# When the X server dies we get a HUP signal from xinit. We must ignore it -# because we still need to do some cleanup. -trap 'echo GOT SIGHUP' HUP - -# we have to unset this for Darwin since it will screw up KDE's dynamic-loading -unset DYLD_FORCE_FLAT_NAMESPACE - -# Check if a KDE session already is running and whether it's possible to connect to X -kcheckrunning -kcheckrunning_result=$? -if test $kcheckrunning_result -eq 0 ; then - echo "KDE seems to be already running on this display." - xmessage -geometry 500x100 "KDE seems to be already running on this display." - exit 1 -elif test $kcheckrunning_result -eq 2 ; then - echo "\$DISPLAY is not set or cannot connect to the X server." - exit 1 -fi - -# Boot sequence: -# -# kdeinit is used to fork off processes which improves memory usage -# and startup time. -# -# * kdeinit starts klauncher first. -# * Then kded is started. kded is responsible for keeping the sycoca -# database up to date. When an up to date database is present it goes -# into the background and the startup continues. -# * Then kdeinit starts kcminit. kcminit performs initialisation of -# certain devices according to the user's settings -# -# * Then ksmserver is started which takes control of the rest of the startup sequence - -# We need to create config folder so we can write startupconfigkeys -configDir=$(qtpaths --writable-path GenericConfigLocation) -mkdir -p "$configDir" - -#This is basically setting defaults so we can use them with kstartupconfig5 -cat >$configDir/startupconfigkeys <$plasmalocalerc <$kdeglobalsfile </dev/null 2>/dev/null; then - : # ok -else - echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" - exit 1 -fi - -ksplash_pid= -if test -z "$dl"; then - # the splashscreen and progress indicator - case "$ksplashrc_ksplash_engine" in - KSplashQML) - ksplash_pid=$(ksplashqml "${ksplashrc_ksplash_theme}" --pid) - ;; - None) - ;; - *) - ;; - esac -fi - -# Source scripts found in /plasma-workspace/env/*.sh -# (where correspond to the system and user's configuration -# directories, as identified by Qt's qtpaths, e.g. $HOME/.config -# and /etc/xdg/ on Linux) -# -# This is where you can define environment variables that will be available to -# all KDE programs, so this is where you can run agents using e.g. eval `ssh-agent` -# or eval `gpg-agent --daemon`. -# Note: if you do that, you should also put "ssh-agent -k" as a shutdown script -# -# (see end of this file). -# For anything else (that doesn't set env vars, or that needs a window manager), -# better use the Autostart folder. - -IFS=":" read -r -a scriptpath <<< $(qtpaths --paths GenericConfigLocation) -# Add /env/ to the directory to locate the scripts to be sourced -for prefix in "${scriptpath[@]}"; do - for file in "$prefix"/plasma-workspace/env/*.sh; do - test -r "$file" && . "$file" || true - done -done - -echo 'startkde: Starting up...' 1>&2 - -# Mark that full KDE session is running (e.g. Konqueror preloading works only -# with full KDE running). The KDE_FULL_SESSION property can be detected by -# any X client connected to the same X session, even if not launched -# directly from the KDE session but e.g. using "ssh -X", kdesu. $KDE_FULL_SESSION -# however guarantees that the application is launched in the same environment -# like the KDE session and that e.g. KDE utilities/libraries are available. -# KDE_FULL_SESSION property is also only available since KDE 3.5.5. -# The matching tests are: -# For $KDE_FULL_SESSION: -# if test -n "$KDE_FULL_SESSION"; then ... whatever -# For KDE_FULL_SESSION property: -# xprop -root | grep "^KDE_FULL_SESSION" >/dev/null 2>/dev/null -# if test $? -eq 0; then ... whatever -# -# Additionally there is (since KDE 3.5.7) $KDE_SESSION_UID with the uid -# of the user running the KDE session. It should be rarely needed (e.g. -# after sudo to prevent desktop-wide functionality in the new user's kded). -# -# Since KDE4 there is also KDE_SESSION_VERSION, containing the major version number. -# Note that this didn't exist in KDE3, which can be detected by its absense and -# the presence of KDE_FULL_SESSION. -# -KDE_FULL_SESSION=true -export KDE_FULL_SESSION -xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true - -KDE_SESSION_VERSION=5 -export KDE_SESSION_VERSION -xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 - -KDE_SESSION_UID=`id -ru` -export KDE_SESSION_UID - -XDG_CURRENT_DESKTOP=KDE -export XDG_CURRENT_DESKTOP - -# At this point all the environment is ready, let's send it to kwalletd if running -if test -n "$PAM_KWALLET_LOGIN" ; then - env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -fi -# ...and also to kwalletd5 -if test -n "$PAM_KWALLET5_LOGIN" ; then - env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -fi - -# At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -ksyncdbusenv -if test $? -ne 0; then - # Startup error - echo 'startkde: Could not sync environment to dbus.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not sync environment to dbus." - exit 1 -fi - -# We set LD_BIND_NOW to increase the efficiency of kdeinit. -# kdeinit unsets this variable before loading applications. -LD_BIND_NOW=true start_kdeinit_wrapper --kded +kcminit_startup -if test $? -ne 0; then - # Startup error - echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." - exit 1 -fi - -# (NixOS) Run kbuildsycoca5 before starting the user session because things -# may be missing or moved if they have run nixos-rebuild and it may not be -# possible for them to start Konsole to run it manually! -kbuildsycoca5 - -# finally, give the session control to the session manager -# see kdebase/ksmserver for the description of the rest of the startup sequence -# if the KDEWM environment variable has been set, then it will be used as KDE's -# window manager instead of kwin. -# if KDEWM is not set, ksmserver will ensure kwin is started. -# kwrapper5 is used to reduce startup time and memory usage -# kwrapper5 does not return useful error codes such as the exit code of ksmserver. -# We only check for 255 which means that the ksmserver process could not be -# started, any problems thereafter, e.g. ksmserver failing to initialize, -# will remain undetected. -test -n "$KDEWM" && KDEWM="--windowmanager $KDEWM" -# If the session should be locked from the start (locked autologin), -# lock now and do the rest of the KDE startup underneath the locker. -KSMSERVEROPTIONS="" -test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" -kwrapper5 ksmserver $KDEWM $KSMSERVEROPTIONS -if test $? -eq 255; then - # Startup error - echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 - test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -fi - -wait_drkonqi=$(kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true) - -if test x"$wait_drkonqi"x = x"true"x ; then - # wait for remaining drkonqi instances with timeout (in seconds) - wait_drkonqi_timeout=$(kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900) - wait_drkonqi_counter=0 - while qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do - sleep 5 - wait_drkonqi_counter=$((wait_drkonqi_counter+5)) - if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then - # ask remaining drkonqis to die in a graceful way - qdbus | grep 'org.kde.drkonqi-' | while read address ; do - qdbus "$address" "/MainApplication" "quit" - done - break - fi - done -fi - -echo 'startkde: Shutting down...' 1>&2 -# just in case -test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - -# Clean up -kdeinit5_shutdown - -unset KDE_FULL_SESSION -xprop -root -remove KDE_FULL_SESSION -unset KDE_SESSION_VERSION -xprop -root -remove KDE_SESSION_VERSION -unset KDE_SESSION_UID - -echo 'startkde: Done.' 1>&2 diff --git a/pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix b/pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix deleted file mode 100644 index a921e153dbc2d..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.5/systemsettings.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, kitemviews -, kcmutils, ki18n, kio, kservice, kiconthemes, kwindowsystem -, kxmlgui, kdbusaddons, kconfig, khtml, makeQtWrapper -}: - -plasmaPackage { - name = "systemsettings"; - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons - kconfig - ]; - propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/systemsettings5" - ''; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c4472ae3c914..ff6c926dfadf7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15574,22 +15574,6 @@ in }; kde5 = - let - frameworks = import ../desktops/kde-5/frameworks-5.19 { inherit pkgs; }; - plasma = import ../desktops/kde-5/plasma-5.5 { inherit pkgs; }; - applications = import ../desktops/kde-5/applications-15.12 { inherit pkgs; }; - merged = self: - { plasma = plasma self; - frameworks = frameworks self; - applications = applications self; } - // frameworks self - // plasma self - // applications self - // kde5PackagesFun self; - in - recurseIntoAttrs (lib.makeScope qt55.newScope merged); - - kde5_latest = let frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; -- cgit 1.4.1 From 6a64edfa0e38b599ee15f7582d3dbe62b2b884af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 07:39:30 -0500 Subject: gstreamer-1.0: multiple outputs --- pkgs/development/libraries/gstreamer/bad/default.nix | 2 ++ pkgs/development/libraries/gstreamer/base/default.nix | 4 +++- pkgs/development/libraries/gstreamer/core/default.nix | 7 +++++++ pkgs/development/libraries/gstreamer/ges/default.nix | 2 ++ pkgs/development/libraries/gstreamer/gnonlin/default.nix | 2 ++ pkgs/development/libraries/gstreamer/good/default.nix | 7 +++++++ pkgs/development/libraries/gstreamer/gstreamermm/default.nix | 6 ++++-- pkgs/development/libraries/gstreamer/libav/default.nix | 2 ++ pkgs/development/libraries/gstreamer/python/default.nix | 2 ++ pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix | 2 ++ pkgs/development/libraries/gstreamer/ugly/default.nix | 2 ++ pkgs/development/libraries/gstreamer/vaapi/default.nix | 2 ++ pkgs/development/libraries/gstreamer/validate/default.nix | 2 ++ 13 files changed, 39 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index add3026275f69..c47de95c2ad0d 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -34,6 +34,8 @@ stdenv.mkDerivation rec { sha256 = "03m99igngm37653353n5d724bcqw7p6hw6xjw0i2824523fpcqqi"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index b2fff30197c26..176eb404f004a 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { sha256 = "08hmg7fp519wim1fm04r7f2q2020ssdninawqsbrqjsvs70srh5b"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python gobjectIntrospection ]; @@ -31,7 +33,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ gstreamer ]; - configureFlags = if stdenv.isDarwin then [ + configureFlags = if stdenv.isDarwin then [ # Does not currently build on Darwin "--disable-libvisual" # Undefined symbols _cdda_identify and _cdda_identify_scsi in cdparanoia diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 40caf4093f05f..162f407dd59ee 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1p5y9bbrhywng0prmpxv29p6jsz6vd039d49bnc98p9b45532yll"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig perl bison flex python gobjectIntrospection makeWrapper ]; @@ -29,5 +31,10 @@ stdenv.mkDerivation rec { done ''; + preFixup = '' + moveToOutput "bin" "$dev" + moveToOutput "share/bash-completion" "$dev" + ''; + setupHook = ./setup-hook.sh; } diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index e47ecfa01aa3c..0b48d87b90a95 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1gisdfa91kq89bsmbvb47alaxh8lpqmr6f3dzlwmf389nkandw2h"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python gobjectIntrospection flex perl ]; propagatedBuildInputs = [ gnonlin libxml2 ]; diff --git a/pkgs/development/libraries/gstreamer/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/gnonlin/default.nix index 9d43f3ac23c33..db29413476f68 100644 --- a/pkgs/development/libraries/gstreamer/gnonlin/default.nix +++ b/pkgs/development/libraries/gstreamer/gnonlin/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "0zv60rq2h736a6fivd3a3wp59dj1jar7b2vwzykahvl168b7wrid"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ gst-plugins-base ]; diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 54175fb83fbe8..d14a99ce56bf0 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -29,6 +29,8 @@ stdenv.mkDerivation rec { sha256 = "0kczdvqxvl8kxiy2d7czv16jp73hv9k3nykh47ckihnv8x6i6362"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ @@ -40,5 +42,10 @@ stdenv.mkDerivation rec { ++ libintlOrEmpty ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 ]; + preFixup = '' + mkdir -p "$dev/lib/gstreamer-1.0" + mv "$out/lib/gstreamer-1.0/"*.la "$dev/lib/gstreamer-1.0" + ''; + LDFLAGS = optionalString stdenv.isDarwin "-lintl"; } diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix index 692310be0bad2..9b7db6d47324e 100644 --- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix +++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix @@ -11,13 +11,15 @@ stdenv.mkDerivation rec { url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz"; sha256 = "0bj6and9b26d32bq90l8nx5wqh2ikkh8dm7qwxyxfdvmrzhixhgi"; }; - + + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig file ]; propagatedBuildInputs = [ glibmm gst_all_1.gst-plugins-base ]; enableParallelBuilding = true; - + meta = with stdenv.lib; { description = "C++ interface for GStreamer"; homepage = http://gstreamer.freedesktop.org/bindings/cplusplus.html; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index e4daa642ba06b..ad3bdb81858e2 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "0719njp8aarhvn038pijq6dmsnli0zlg146hyfs3rsdffs4f472s"; }; + outputs = [ "dev" "out" ]; + configureFlags = stdenv.lib.optionalString withSystemLibav "--with-system-libav"; diff --git a/pkgs/development/libraries/gstreamer/python/default.nix b/pkgs/development/libraries/gstreamer/python/default.nix index 5320fdfaced15..6d018c36f5695 100644 --- a/pkgs/development/libraries/gstreamer/python/default.nix +++ b/pkgs/development/libraries/gstreamer/python/default.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { patches = [ ./different-path-with-pygobject.patch ]; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; # XXX: in the Libs.private field of python3.pc diff --git a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix b/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix index 3bd840dcd7eee..675fdf322e875 100644 --- a/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix +++ b/pkgs/development/libraries/gstreamer/qt-gstreamer/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { }) ]; + outputs = [ "dev" "out" ]; + buildInputs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base glib qt4 ]; propagatedBuildInputs = [ boost ]; nativeBuildInputs = [ cmake automoc4 flex bison pkgconfig ]; diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index 8f8437ad4ac38..3b17c548ba213 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -25,6 +25,8 @@ stdenv.mkDerivation rec { sha256 = "137b6kqykh5nwbmiv28nn1pc1d2x2rb2xxg382pc9pa9gpxpyrak"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig python ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix index a9aa3d73fa2e7..18394193706a9 100644 --- a/pkgs/development/libraries/gstreamer/vaapi/default.nix +++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "14jal2g5mf8r59w8420ixl3kg50vcmy56446ncwd0xrizd6yms5b"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = with stdenv.lib; [ pkgconfig bzip2 ]; buildInputs = [ diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index 1c12362166482..02ce69af907a2 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { sha256 = "1pcy9pfffyk6xiw6aq38kbv7k24x2rljdy8fabjfy1abpmvvfrkn"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; -- cgit 1.4.1 From 160bf21b3a97c1d7fb4281c4d55efad06149ae2f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 07:58:04 -0500 Subject: librsvg: multiple outputs --- pkgs/development/libraries/librsvg/default.nix | 2 ++ pkgs/tools/inputmethods/ibus/wrapper.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index 0768a21bf5436..6147e847b33d2 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; + outputs = [ "dev" "out" ]; + buildInputs = [ libxml2 libgsf bzip2 libcroco pango libintlOrEmpty ] ++ stdenv.lib.optional enableIntrospection [ gobjectIntrospection ]; diff --git a/pkgs/tools/inputmethods/ibus/wrapper.nix b/pkgs/tools/inputmethods/ibus/wrapper.nix index 632f46f81e94e..690043791b203 100644 --- a/pkgs/tools/inputmethods/ibus/wrapper.nix +++ b/pkgs/tools/inputmethods/ibus/wrapper.nix @@ -23,7 +23,7 @@ let for prog in ibus ibus-daemon ibus-setup; do wrapProgram "$out/bin/$prog" \ - --prefix GDK_PIXBUF_MODULE_FILE : ${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \ + --prefix GDK_PIXBUF_MODULE_FILE : ${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH:$out/lib/girepository-1.0" \ --prefix GIO_EXTRA_MODULES : "${dconf}/lib/gio/modules" \ --set IBUS_COMPONENT_PATH "$out/share/ibus/component/" \ -- cgit 1.4.1 From f11c043fa2bded6ec2588a5be8cf49434891081c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 12:20:28 -0500 Subject: glibmm: multiple outputs --- pkgs/development/libraries/glibmm/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index 8417179dde199..6d15faf954900 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; propagatedBuildInputs = [ glib libsigcxx ]; -- cgit 1.4.1 From e0a2224f1e2b06dd118906dfce564b6130eb2a95 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 12:33:54 -0500 Subject: v4l-utils: multiple outputs --- pkgs/os-specific/linux/v4l-utils/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/v4l-utils/default.nix b/pkgs/os-specific/linux/v4l-utils/default.nix index 17b21f92c171e..476f3ffcac6ca 100644 --- a/pkgs/os-specific/linux/v4l-utils/default.nix +++ b/pkgs/os-specific/linux/v4l-utils/default.nix @@ -23,6 +23,8 @@ stdenv.mkDerivation rec { sha256 = "0k46z5gqjzg702m2vs4sv6sxynq1sj14m0pgwvl2gkgg3dfbyjhn"; }; + outputs = [ "dev" "out" ]; + configureFlags = [ "--enable-libv4l" ] ++ (if (alsaLib != null && libX11 != null && (qt4 != null || qt5 != null)) then [ @@ -36,15 +38,15 @@ stdenv.mkDerivation rec { "--disable-qv4l2" ]); - postInstall = '' + postFixup = '' # Create symlink for V4l1 compatibility - ln -s $out/include/libv4l1-videodev.h $out/include/videodev.h + ln -s "$dev/include/libv4l1-videodev.h" "$dev/include/videodev.h" ''; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ alsaLib libX11 qt4 qt5 ]; - + propagatedBuildInputs = [ libjpeg ]; meta = with stdenv.lib; { -- cgit 1.4.1 From 70936ce3f8691f868f9bac0eb3668f9f4af386af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 19:17:42 -0500 Subject: bluez5: multiple outputs --- pkgs/os-specific/linux/bluez/bluez5.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/linux/bluez/bluez5.nix b/pkgs/os-specific/linux/bluez/bluez5.nix index 9750a2a76499e..a7e36d21dd48e 100644 --- a/pkgs/os-specific/linux/bluez/bluez5.nix +++ b/pkgs/os-specific/linux/bluez/bluez5.nix @@ -6,7 +6,7 @@ assert stdenv.isLinux; stdenv.mkDerivation rec { name = "bluez-5.37"; - + src = fetchurl { url = "mirror://kernel/linux/bluetooth/${name}.tar.xz"; sha256 = "c14ba9ddcb0055522073477b8fd8bf1ddf5d219e75fdfd4699b7e0ce5350d6b0"; @@ -20,11 +20,13 @@ stdenv.mkDerivation rec { readline libsndfile udev libical # Disables GStreamer; not clear what it gains us other than a # zillion extra dependencies. - # gstreamer gst_plugins_base + # gstreamer gst_plugins_base ]; + outputs = [ "dev" "out" "test" ]; + patches = [ ./bluez-5.37-obexd_without_systemd-1.patch ]; - + preConfigure = '' substituteInPlace tools/hid2hci.rules --replace /sbin/udevadm ${systemd}/bin/udevadm substituteInPlace tools/hid2hci.rules --replace "hid2hci " "$out/lib/udev/hid2hci " @@ -51,9 +53,9 @@ stdenv.mkDerivation rec { # FIXME: Move these into a separate package to prevent Bluez from # depending on Python etc. postInstall = '' - mkdir $out/test - cp -a test $out - pushd $out/test + mkdir -p $test/test + cp -a test $test + pushd $test/test for a in \ simple-agent \ test-adapter \ @@ -65,7 +67,7 @@ stdenv.mkDerivation rec { ln -s ../test/$a $out/bin/bluez-$a done popd - wrapPythonProgramsIn $out/test "$out/test $pythonPath" + wrapPythonProgramsIn $test/test "$test/test $pythonPath" # for bluez4 compatibility for NixOS mkdir $out/sbin -- cgit 1.4.1 From c25907d072742e9720b713d7116793e0d8a623c5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 24 Apr 2016 19:17:55 -0500 Subject: network-manager: multiple outputs --- nixos/modules/services/networking/networkmanager.nix | 2 +- pkgs/tools/networking/network-manager/default.nix | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index 9912ad9ae3fce..d0b86b4cbdbab 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -114,7 +114,7 @@ in { # Ugly hack for using the correct gnome3 packageSet basePackages = mkOption { type = types.attrsOf types.package; - default = { inherit networkmanager modemmanager wpa_supplicant + default = { inherit networkmanager.out modemmanager wpa_supplicant networkmanager_openvpn networkmanager_vpnc networkmanager_openconnect networkmanager_pptp networkmanager_l2tp; }; diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix index afdca314ae649..ecc8f1908de0b 100644 --- a/pkgs/tools/networking/network-manager/default.nix +++ b/pkgs/tools/networking/network-manager/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { sha256 = "17jan0g5jzp8mrpklyacwdgnnw016m1c5pc4az5im6qhc260yirs"; }; + outputs = [ "dev" "out" ]; + preConfigure = '' substituteInPlace configure --replace /usr/bin/uname ${coreutils}/bin/uname substituteInPlace configure --replace /usr/bin/file ${file}/bin/file -- cgit 1.4.1 From 668f93c719773a66448a757de80bb166b38c729c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:01 -0500 Subject: xcb-util-cursor: multiple outputs --- pkgs/development/libraries/xcb-util-cursor/HEAD.nix | 6 ++++-- pkgs/servers/x11/xorg/overrides.nix | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix index cf14490c5147b..8bd7a90ad5a61 100644 --- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix +++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, bashInteractive, autoconf, automake, libtool, pkgconfig +{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig , git, xorg, gnum4, libxcb, gperf }: stdenv.mkDerivation rec { @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { platforms = platforms.linux ++ platforms.darwin; }; + outputs = [ "dev" "out" ]; + buildInputs = [ autoconf automake @@ -34,6 +36,6 @@ stdenv.mkDerivation rec { configurePhase = '' sed -i '15 i\ LT_INIT' configure.ac - ${bashInteractive}/bin/bash autogen.sh --prefix="$out" + ${stdenv.shell} autogen.sh --prefix="$out" ''; } diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index a0405ec077f32..a19f479bf2eaf 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -265,6 +265,7 @@ in }; xcbutilcursor = attrs: attrs // { + outputs = [ "dev" "out" ]; meta.maintainers = [ stdenv.lib.maintainers.lovek323 ]; }; -- cgit 1.4.1 From b06f9aa015521bb41e516e01a60d427a0ab7e178 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:15 -0500 Subject: openjpeg: multiple outputs --- pkgs/development/libraries/openjpeg/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/openjpeg/generic.nix b/pkgs/development/libraries/openjpeg/generic.nix index 1b4b4af7f41c3..b01ff527d8cd9 100644 --- a/pkgs/development/libraries/openjpeg/generic.nix +++ b/pkgs/development/libraries/openjpeg/generic.nix @@ -25,12 +25,14 @@ in stdenv.mkDerivation rec { name = "openjpeg-${version}"; - + src = fetchurl { url = "mirror://sourceforge/openjpeg.mirror/${version}/openjpeg-${version}.tar.gz"; inherit sha256; }; + outputs = [ "dev" "out" ]; + cmakeFlags = [ "-DCMAKE_INSTALL_NAME_DIR=\${CMAKE_INSTALL_PREFIX}/lib" "-DBUILD_SHARED_LIBS=ON" -- cgit 1.4.1 From 2a16c9d52bf3aa7e0206578faf6153e42d5d671a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:29 -0500 Subject: libzip: multiple outputs --- pkgs/development/libraries/libzip/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 4af9278c7b1b9..fff155ca81e77 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1mcqrz37vjrfr4gnss37z1m7xih9x9miq3mms78zf7wn7as1znw3"; }; + outputs = [ "dev" "out" ]; + # fix CVE-2015-2331 taken from Debian patch: # https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=12;filename=libzip-0.11.2-1.2-nmu.diff;att=1;bug=780756 postPatch = '' @@ -22,7 +24,7 @@ stdenv.mkDerivation rec { # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' - ( cd $out/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) + ( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) ''; meta = { -- cgit 1.4.1 From 6651b53bddb288c6c6acb9e49ce966c455874047 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:41 -0500 Subject: libinput: multiple outputs --- pkgs/development/libraries/libinput/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 2c29482227a88..82dca85c04041 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "1wp937sn2dzqhrbl2bhapqb0pvybc80z8ynw7yfkm5ycl39skch9"; }; + outputs = [ "dev" "out" ]; + configureFlags = [ (mkFlag documentationSupport "documentation") (mkFlag eventGUISupport "event-gui") -- cgit 1.4.1 From fad200eb7ce68cdd958d1b39fb1a184aa88aa3eb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 06:51:53 -0500 Subject: exiv2: multiple outputs --- pkgs/development/libraries/exiv2/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/exiv2/default.nix b/pkgs/development/libraries/exiv2/default.nix index e1af46cc3ed0e..af17c9ae0f0fe 100644 --- a/pkgs/development/libraries/exiv2/default.nix +++ b/pkgs/development/libraries/exiv2/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { }; postPatch = "patchShebangs ./src/svn_version.sh"; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ gettext ]; propagatedBuildInputs = [ zlib expat ]; -- cgit 1.4.1 From 626e5bd4dd94b04f51638cc48ac85fc658c7cc3f Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 26 Apr 2016 10:40:39 +0200 Subject: python3: fix build after 5ff40dded, refactor The path list was passed in a format not suitable for gcc command-line. Also, let's utilize that we had `with stdenv.lib;`. /cc @abbradar. --- pkgs/development/interpreters/python/3.4/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index 6a3ab25c5d409..517dfc3d8b273 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + buildInputs = optionals stdenv.isDarwin [ CF configd ]; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "18kb5c29w04rj4gyz3jngm72sy8izfnbjlm6ajv6rv2m061d75x7"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s"; - prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + prePatch = optionalString stdenv.isDarwin '' substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' ''; @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; @@ -113,8 +113,8 @@ stdenv.mkDerivation { hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; - license = stdenv.lib.licenses.psfl; - platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric cstrahan ]; + license = licenses.psfl; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; }; } -- cgit 1.4.1 From 387915e99c5c90d8200ef3e86e9f42d8568dbf31 Mon Sep 17 00:00:00 2001 From: Vladimír Čunát Date: Tue, 26 Apr 2016 10:50:48 +0200 Subject: python3*: port the fix from parent commit I really love such copied expressions... but this case was easy compared to usual consequences of file-copying in long-running branches. --- pkgs/development/interpreters/python/3.2/default.nix | 4 ++-- pkgs/development/interpreters/python/3.3/default.nix | 4 ++-- pkgs/development/interpreters/python/3.5/default.nix | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix index 91f962efcf4a8..8a2d24d76f985 100644 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ b/pkgs/development/interpreters/python/3.2/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index b9cb46562122a..60d56597ea0f8 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 504c85ac38d2b..15e02d1ab3edd 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -35,16 +35,16 @@ stdenv.mkDerivation { pythonVersion = majorVersion; inherit majorVersion version; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CF configd ]; + buildInputs = optionals stdenv.isDarwin [ CF configd ]; src = fetchurl { url = "http://www.python.org/ftp/python/${version}/Python-${fullVersion}.tar.xz"; sha256 = "1j95yx32ggqx8jf13h3c8qfp34ixpyg8ipqcdjmn143d6q67rmf6"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; + NIX_LDFLAGS = optionalString stdenv.isLinux "-lgcc_s"; - prePatch = stdenv.lib.optionalString stdenv.isDarwin '' + prePatch = optionalString stdenv.isDarwin '' substituteInPlace configure --replace '`/usr/bin/arch`' '"i386"' ''; @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${makeSearchPathOutput "dev" "include" buildInputs}" - LDFLAGS="${makeLibraryPath buildInputs}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${getDev p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${getLib p}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; @@ -113,8 +113,8 @@ stdenv.mkDerivation { hierarchical packages; exception-based error handling; and very high level dynamic data types. ''; - license = stdenv.lib.licenses.psfl; - platforms = with stdenv.lib.platforms; linux ++ darwin; - maintainers = with stdenv.lib.maintainers; [ simons chaoflow iElectric cstrahan ]; + license = licenses.psfl; + platforms = with platforms; linux ++ darwin; + maintainers = with maintainers; [ simons chaoflow iElectric cstrahan ]; }; } -- cgit 1.4.1 From 45aaea24faa8a64baaa7e17d477bb2388f9b20a0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 21:17:23 +0300 Subject: unixODBC: 2.3.2 -> 2.3.4 --- pkgs/development/libraries/unixODBC/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/unixODBC/default.nix b/pkgs/development/libraries/unixODBC/default.nix index ef8dcdc53290c..e40f362a3b101 100644 --- a/pkgs/development/libraries/unixODBC/default.nix +++ b/pkgs/development/libraries/unixODBC/default.nix @@ -1,10 +1,20 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "unixODBC-2.3.2"; + name = "unixODBC-${version}"; + version = "2.3.4"; + src = fetchurl { url = "ftp://ftp.unixodbc.org/pub/unixODBC/${name}.tar.gz"; - sha256 = "16jw5fq7wgfky6ak1h2j2pqx99jivsdl4q8aq6immpr55xs5jd4w"; + sha256 = "0f8y88rcc2akjvjv5y66yx7k0ms9h1s0vbcfy25j93didflhj59f"; + }; + + configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ]; + + meta = with stdenv.lib; { + description = "ODBC driver manager for Unix"; + homepage = http://www.unixodbc.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; - configureFlags = "--disable-gui --sysconfdir=/etc"; } -- cgit 1.4.1 From 1a3f7d553d4b5fe78f5f186a08ded841a85c45a1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 21:18:01 +0300 Subject: unixODBCDrivers: update and refactor, mark mysql packages as broken --- .../libraries/unixODBCDrivers/default.nix | 223 +++++++++++---------- 1 file changed, 119 insertions(+), 104 deletions(-) diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index d3a2debbd121d..80b39bd4cabce 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -1,115 +1,130 @@ -{fetchurl, stdenv, unixODBC, glibc, libtool, openssl, zlib, postgresql, mysql, sqlite}: -# each attr contains the name deriv referencing the derivation and ini which -# evaluates to a string which can be appended to the global unix odbc ini file -# to register the driver +{ fetchurl, stdenv, unixODBC, cmake, postgresql, mysql55, mariadb, sqlite, zlib, libxml2 }: + # I haven't done any parameter tweaking.. So the defaults provided here might be bad + { -# new postgres connector library (doesn't work yet) - psqlng = rec { - deriv = stdenv.mkDerivation { - name = "unix-odbc-pg-odbcng-0.90.101"; - buildInputs = [ unixODBC glibc libtool postgresql ]; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - src = fetchurl { - # using my mirror because original url is https - # https://projects.commandprompt.com/public/odbcng/attachment/wiki/Downloads/odbcng-0.90.101.tar.gz"; - url = http://mawercer.de/~publicrepos/odbcng-0.90.101.tar.gz; - sha256 = "13z3sify4z2jcil379704w0knkpflg6di4jh6zx1x2gdgzydxa1y"; - }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = https://projects.commandprompt.com/public/odbcng; - license = stdenv.lib.licenses.gpl2; - }; + psql = stdenv.mkDerivation rec { + name = "psqlodbc-${version}"; + version = "09.05.0210"; + + src = fetchurl { + url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz"; + sha256 = "0317zrxaiy209xzcc6b5sz6hsyiv4zm74iikp91rgz7z3ll4n4dc"; + }; + + buildInputs = [ unixODBC postgresql ]; + + passthru = { + fancyName = "PostgreSQL"; + driver = "lib/psqlodbcw.so"; + }; + + meta = with stdenv.lib; { + description = "Official PostgreSQL ODBC Driver"; + homepage = https://odbc.postgresql.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; - ini = ""; }; -# official postgres connector - psql = rec { - deriv = stdenv.mkDerivation rec { - name = "psqlodbc-09.03.0100"; - buildInputs = [ unixODBC libtool postgresql openssl ]; - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' + + mariadb = stdenv.mkDerivation rec { + name = "mariadb-connector-odbc-${version}"; + version = "2.0.10"; + src = fetchurl { - url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz"; - sha256 = "0mh10chkmlppidnmvgbp47v5jnphsrls28zwbvyk2crcn8gdx9q1"; + url = "https://downloads.mariadb.org/interstitial/connector-odbc-${version}/src/${name}-ga-src.tar.gz"; + sha256 = "0b6ximy0dg0xhqbrm1l7pn8hjapgpmddi67kh54h6i9cq9hqfdvz"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mariadb ]; + + cmakeFlags = [ + "-DMARIADB_INCLUDE_DIR=${mariadb.lib}/include/mysql" + ]; + + preConfigure = '' + sed -i \ + -e 's,mariadb_config,mysql_config,g' \ + -e 's,libmariadbclient,libmysqlclient,g' \ + cmake/FindMariaDB.cmake + ''; + + passthru = { + fancyName = "MariaDB"; + driver = "lib/libmyodbc3-3.51.12.so"; }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = http://pgfoundry.org/projects/psqlodbc/; - license = "LGPL"; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://downloads.mariadb.org/connector-odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; + }; + }; + + mysql = stdenv.mkDerivation rec { + name = "mysql-connector-odbc-${version}"; + majorVersion = "5.3"; + version = "${majorVersion}.6"; + + src = fetchurl { + url = "https://dev.mysql.com/get/Downloads/Connector-ODBC/${majorVersion}/${name}-src.tar.gz"; + sha256 = "1smi4z49i4zm7cmykjkwlxxzqvn7myngsw5bc35z6gqxmi8c55xr"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mysql55 ]; + + cmakeFlags = [ "-DWITH_UNIXODBC=1" ]; + + passthru = { + fancyName = "MySQL"; + driver = "lib/libmyodbc3-3.51.12.so"; + }; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://dev.mysql.com/downloads/connector/odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; }; }; - ini = - "[PostgreSQL]\n" + - "Description = official PostgreSQL driver for Linux & Win32\n" + - "Driver = ${deriv}/lib/psqlodbcw.so\n" + - "Threading = 2\n"; - }; -# mysql connector - mysql = rec { - libraries = ["lib/libmyodbc3-3.51.12.so"]; - deriv = stdenv.mkDerivation { - name = "mysql-connector-odbc-3.51.12"; - src = fetchurl { - url = http://ftp.snt.utwente.nl/pub/software/mysql/Downloads/MyODBC3/mysql-connector-odbc-3.51.12.tar.gz; - md5 = "a484f590464fb823a8f821b2f1fd7fef"; - }; - configureFlags = "--disable-gui" - + " --with-mysql-path=${mysql.lib} --with-unixODBC=${unixODBC}"; - buildInputs = [ libtool zlib ]; - inherit mysql unixODBC; + + sqlite = stdenv.mkDerivation rec { + name = "sqlite-connector-odbc-${version}"; + version = "0.9993"; + + src = fetchurl { + url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; + sha256 = "0dgsj28sc7f7aprmdd0n5a1rmcx6pv7170c8dfjl0x1qsjxim6hs"; }; - ini = - "[MYSQL]\n" + - "Description = MySQL driver\n" + - "Driver = ${deriv}/lib/libmyodbc3-3.51.12.so\n" + - "CPTimeout = \n" + - "CPReuse = \n" + - "FileUsage = 3\n "; - }; - sqlite = rec { - deriv = let version = "0.995"; in - stdenv.mkDerivation { - name = "sqlite-connector-odbc-${version}"; - - src = fetchurl { - url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; - sha256 = "1r97fw6xy5w2f8c0ii7blfqfi6salvd3k8wnxpx9wqc1gxk8jnyy"; - }; - - buildInputs = [ sqlite ]; - - configureFlags = "--with-sqlite3=${sqlite} --with-odbc=${unixODBC}"; - - # move libraries to $out/lib where they're expected to be - postInstall = '' - mkdir -p "$out/lib" - mv "$out"/*.so "$out/lib" - mv "$out"/*.la "$out/lib" - ''; - - meta = { - description = "ODBC driver for SQLite"; - homepage = http://www.ch-werner.de/sqliteodbc; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ vlstill ]; - }; + + buildInputs = [ unixODBC sqlite zlib libxml2 ]; + + configureFlags = [ "--with-odbc=${unixODBC}" ]; + + installTargets = [ "install-3" ]; + + # move libraries to $out/lib where they're expected to be + postInstall = '' + mkdir -p "$out/lib" + mv "$out"/*.* "$out/lib" + ''; + + passthru = { + fancyName = "SQLite"; + driver = "lib/libsqlite3odbc.so"; + }; + + meta = with stdenv.lib; { + description = "ODBC driver for SQLite"; + homepage = http://www.ch-werner.de/sqliteodbc; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = with maintainers; [ vlstill ]; }; - ini = - "[SQLite]\n" + - "Description = SQLite ODBC Driver\n" + - "Driver = ${deriv}/lib/libsqlite3odbc.so\n" + - "Setup = ${deriv}/lib/libsqlite3odbc.so\n" + - "Threading = 2\n"; - }; + }; } -- cgit 1.4.1 From 5a40332d7008fc60b55dc8eb54671ef4cf404680 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 21:18:21 +0300 Subject: unix-odbc-drivers module: update for new unixODBCDrivers --- nixos/modules/config/unix-odbc-drivers.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/nixos/modules/config/unix-odbc-drivers.nix b/nixos/modules/config/unix-odbc-drivers.nix index eea6477fff233..9565a09b3a1e0 100644 --- a/nixos/modules/config/unix-odbc-drivers.nix +++ b/nixos/modules/config/unix-odbc-drivers.nix @@ -5,14 +5,21 @@ with lib; # unixODBC drivers (this solution is not perfect.. Because the user has to # ask the admin to add a driver.. but it's simple and works -{ +let + iniDescription = pkg: '' + [${pkg.fancyName}] + Description = ${pkg.meta.description} + Driver = ${pkg}/${pkg.driver} + ''; + +in { ###### interface options = { environment.unixODBCDrivers = mkOption { type = types.listOf types.package; default = []; - example = literalExample "with pkgs.unixODBCDrivers; [ mysql psql psqlng ]"; + example = literalExample "with pkgs.unixODBCDrivers; [ sqlite psql ]"; description = '' Specifies Unix ODBC drivers to be registered in /etc/odbcinst.ini. You may also want to @@ -25,11 +32,7 @@ with lib; ###### implementation config = mkIf (config.environment.unixODBCDrivers != []) { - - environment.etc."odbcinst.ini".text = - let inis = map (x : x.ini) config.environment.unixODBCDrivers; - in lib.concatStringsSep "\n" inis; - + environment.etc."odbcinst.ini".text = concatMapStringsSep "\n" iniDescription config.environment.unixODBCDrivers; }; } -- cgit 1.4.1 From 2c32607650ddb6e6adbc2b22d785139f065eb18c Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 03:46:36 +0300 Subject: libzip: 0.11.2 -> 1.1.2 --- pkgs/development/libraries/libzip/default.nix | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index fff155ca81e77..2afc0e47ca321 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -1,26 +1,23 @@ -{ stdenv, fetchurl, zlib }: +{ stdenv, fetchurl, perl, zlib }: stdenv.mkDerivation rec { - name = "libzip-0.11.2"; + name = "libzip-${version}"; + version = "1.1.2"; src = fetchurl { url = "http://www.nih.at/libzip/${name}.tar.gz"; - sha256 = "1mcqrz37vjrfr4gnss37z1m7xih9x9miq3mms78zf7wn7as1znw3"; + sha256 = "08b26qbfxq6z5xf36y1d8insm5valv83dhj933iag6man04prb2r"; }; outputs = [ "dev" "out" ]; - # fix CVE-2015-2331 taken from Debian patch: - # https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=12;filename=libzip-0.11.2-1.2-nmu.diff;att=1;bug=780756 - postPatch = '' - substituteInPlace lib/zip_dirent.c --replace \ - 'else if ((cd->entry=(struct zip_entry *)' \ - 'else if (nentry > ((size_t)-1)/sizeof(*(cd->entry)) || (cd->entry=(struct zip_entry *)' - cat lib/zip_dirent.c - ''; - + nativeBuildInputs = [ perl ]; propagatedBuildInputs = [ zlib ]; + preInstall = '' + patchShebangs man/handle_links + ''; + # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' -- cgit 1.4.1 From 519dd711fe33cfe73e450b5f62925e8fab955bb3 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 03:48:59 +0300 Subject: libzip: Move directory containing zipconf.h to $dev http://hydra.nixos.org/build/34979863/nixlog/1/raw --- pkgs/development/libraries/libzip/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 2afc0e47ca321..2b962425e425e 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { # At least mysqlWorkbench cannot find zipconf.h; I think also openoffice # had this same problem. This links it somewhere that mysqlworkbench looks. postInstall = '' + mkdir -p $dev/lib + mv $out/lib/libzip $dev/lib/libzip ( cd $dev/include ; ln -s ../lib/libzip/include/zipconf.h zipconf.h ) ''; -- cgit 1.4.1 From 25b55e740933b4f8c76a4535e50f4afbfbc7a931 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 04:10:42 +0300 Subject: gegl: Add platforms --- pkgs/development/libraries/gegl/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/gegl/default.nix b/pkgs/development/libraries/gegl/default.nix index 38432f68273a9..70b731f56dd10 100644 --- a/pkgs/development/libraries/gegl/default.nix +++ b/pkgs/development/libraries/gegl/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { description = "Graph-based image processing framework"; homepage = http://www.gegl.org; license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.unix; }; } -- cgit 1.4.1 From 15f68398ef2195859f26da570f44d48fb17f9167 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 04:10:54 +0300 Subject: libzip: Add platforms --- pkgs/development/libraries/libzip/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix index 2b962425e425e..714745c432eb5 100644 --- a/pkgs/development/libraries/libzip/default.nix +++ b/pkgs/development/libraries/libzip/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { meta = { homepage = http://www.nih.at/libzip; description = "A C library for reading, creating and modifying zip archives"; + platforms = stdenv.lib.platforms.unix; }; } -- cgit 1.4.1 From 7f63790f258efd7793a348938013c5e8984a5317 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 04:19:16 +0300 Subject: fuse-zip: Add dashed variant (and one with underscore for compat) --- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index cd60573f99e9d..723411f3f55d1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -43,6 +43,7 @@ doNotDisplayTwice rec { firefox-wrapper = firefox; # 2016-01 firefoxWrapper = firefox; # 2015-09 fuse_exfat = exfat; # 2015-09-11 + fuse_zip = fuse-zip; # added 2016-04-27 gettextWithExpat = gettext; # 2016-02-19 grantlee5 = qt5.grantlee; # added 2015-12-19 gupnptools = gupnp-tools; # added 2015-12-19 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ff6c926dfadf7..0a175b530e07a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1574,7 +1574,7 @@ in fuse-7z-ng = callPackage ../tools/filesystems/fuse-7z-ng { }; - fuse_zip = callPackage ../tools/filesystems/fuse-zip { }; + fuse-zip = callPackage ../tools/filesystems/fuse-zip { }; exfat = callPackage ../tools/filesystems/exfat { }; -- cgit 1.4.1 From 584d884bd7010fb6a990978dec03a4ffe22d2fba Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 26 Apr 2016 21:39:57 +0300 Subject: gstreamer: Fix multiple outputs split MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Explicitly moving the files breaks them, because the wrappers reference the files by absolute path. Also this automatically moves the manpages to $dev as well. - Need to explicitly set --exec-prefix since the pkgconfig file has `toolsdir=${exec_prefix}/bin`, breaking totem: http://hydra.nixos.org/build/34980617/nixlog/1/raw ```` checking for BACKEND_TEST... yes checking GStreamer 1.0 inspection tool... no configure: error: Cannot find required GStreamer-1.0 tool 'gst-inspect-1.0'. It should be part of gstreamer-1_0-utils. Please install it. builder for ‘/nix/store/npq2ihlsdniv4j3wbyparq9byjxqdi15-totem-3.18.1.drv’ failed with exit code 1 ```` While at it, enable parallel build. --- pkgs/development/libraries/gstreamer/core/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 162f407dd59ee..bbd4bcde785b6 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { }; outputs = [ "dev" "out" ]; + outputBin = "dev"; nativeBuildInputs = [ pkgconfig perl bison flex python gobjectIntrospection makeWrapper @@ -25,6 +26,12 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ glib ]; + enableParallelBuilding = true; + + preConfigure = '' + configureFlagsArray+=("--exec-prefix=$dev") + ''; + postInstall = '' for prog in "$out/bin/"*; do wrapProgram "$prog" --prefix GST_PLUGIN_SYSTEM_PATH : "\$(unset _tmp; for profile in \$NIX_PROFILES; do _tmp="\$profile/lib/gstreamer-1.0''$\{_tmp:+:\}\$_tmp"; done; printf "\$_tmp")" @@ -32,7 +39,6 @@ stdenv.mkDerivation rec { ''; preFixup = '' - moveToOutput "bin" "$dev" moveToOutput "share/bash-completion" "$dev" ''; -- cgit 1.4.1 From 16bdef135089513223bf567a1ee843009eb132ca Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Apr 2016 13:48:06 +0300 Subject: bluetooth service: fix w.r.t. multiple outputs --- nixos/modules/services/hardware/bluetooth.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/hardware/bluetooth.nix b/nixos/modules/services/hardware/bluetooth.nix index fc95c4910bf71..2c271b3281794 100644 --- a/nixos/modules/services/hardware/bluetooth.nix +++ b/nixos/modules/services/hardware/bluetooth.nix @@ -9,7 +9,7 @@ let serviceConfig = { Type = "dbus"; BusName = "org.bluez"; - ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n"; + ExecStart = "${getBin bluez-bluetooth}/bin/bluetoothd -n"; }; wantedBy = [ "bluetooth.target" ]; }; @@ -19,7 +19,7 @@ let serviceConfig = { Type = "dbus"; BusName = "org.bluez"; - ExecStart = "${bluez-bluetooth}/sbin/bluetoothd -n"; + ExecStart = "${getBin bluez-bluetooth}/bin/bluetoothd -n"; NotifyAccess="main"; CapabilityBoundingSet="CAP_NET_ADMIN CAP_NET_BIND_SERVICE"; LimitNPROC=1; @@ -32,7 +32,7 @@ let serviceConfig = { Type = "dbus"; BusName = "org.bluez.obex"; - ExecStart = "${bluez-bluetooth}/sbin/obexd"; + ExecStart = "${getBin bluez-bluetooth}/bin/obexd"; }; }; -- cgit 1.4.1 From 7ac1ef05fa162d8e3c35925034df72288df77c8b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Apr 2016 13:51:43 +0300 Subject: networkmanager service: fixup --- nixos/modules/services/networking/networkmanager.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index d0b86b4cbdbab..b83b8b91c6783 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -114,7 +114,7 @@ in { # Ugly hack for using the correct gnome3 packageSet basePackages = mkOption { type = types.attrsOf types.package; - default = { inherit networkmanager.out modemmanager wpa_supplicant + default = { inherit networkmanager modemmanager wpa_supplicant networkmanager_openvpn networkmanager_vpnc networkmanager_openconnect networkmanager_pptp networkmanager_l2tp; }; @@ -187,7 +187,7 @@ in { boot.kernelModules = [ "ppp_mppe" ]; # Needed for most (all?) PPTP VPN connections. - environment.etc = with cfg.basePackages; [ + environment.etc = with mapAttrs (name: getBin) cfg.basePackages; [ { source = ipUpScript; target = "NetworkManager/dispatcher.d/01nixos-ip-up"; } -- cgit 1.4.1 From 21f984f59029a3c68d4a70d1c52173a29c6a2daf Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Apr 2016 14:11:02 +0300 Subject: xfce service: add noDesktop option --- .../modules/services/x11/desktop-managers/xfce.nix | 43 ++++++++++++++-------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/xfce.nix b/nixos/modules/services/x11/desktop-managers/xfce.nix index 33b6dd32c1936..23bef2e44d522 100644 --- a/nixos/modules/services/x11/desktop-managers/xfce.nix +++ b/nixos/modules/services/x11/desktop-managers/xfce.nix @@ -12,20 +12,29 @@ in { options = { - services.xserver.desktopManager.xfce.enable = mkOption { - type = types.bool; - default = false; - description = "Enable the Xfce desktop environment."; - }; + services.xserver.desktopManager.xfce = { + enable = mkOption { + type = types.bool; + default = false; + description = "Enable the Xfce desktop environment."; + }; + + thunarPlugins = mkOption { + default = []; + type = types.listOf types.package; + example = literalExample "[ pkgs.xfce.thunar-archive-plugin ]"; + description = '' + A list of plugin that should be installed with Thunar. + ''; + }; - services.xserver.desktopManager.xfce.thunarPlugins = mkOption { - default = []; - type = types.listOf types.package; - example = literalExample "[ pkgs.xfce.thunar-archive-plugin ]"; - description = '' - A list of plugin that should be installed with Thunar. - ''; + noDesktop = mkOption { + type = types.bool; + default = false; + description = "Don't install XFCE desktop components (xfdesktop, panel and notification daemon)."; + }; }; + }; @@ -59,14 +68,12 @@ in pkgs.xfce.terminal (pkgs.xfce.thunar.override { thunarPlugins = cfg.thunarPlugins; }) pkgs.xfce.xfce4icontheme - pkgs.xfce.xfce4panel pkgs.xfce.xfce4session pkgs.xfce.xfce4settings pkgs.xfce.xfce4mixer pkgs.xfce.xfce4volumed pkgs.xfce.xfce4screenshooter pkgs.xfce.xfconf - pkgs.xfce.xfdesktop pkgs.xfce.xfwm4 # This supplies some "abstract" icons such as # "utilities-terminal" and "accessories-text-editor". @@ -78,9 +85,13 @@ in pkgs.xfce.gvfs pkgs.xfce.xfce4_appfinder pkgs.xfce.tumbler # found via dbus - pkgs.xfce.xfce4notifyd # found via dbus ] - ++ optional config.powerManagement.enable pkgs.xfce.xfce4_power_manager; + ++ optional config.powerManagement.enable pkgs.xfce.xfce4_power_manager + ++ optionals (!cfg.noDesktop) + [ pkgs.xfce.xfce4panel + pkgs.xfce.xfdesktop + pkgs.xfce.xfce4notifyd # found via dbus + ]; environment.pathsToLink = [ "/share/xfce4" "/share/themes" "/share/mime" "/share/desktop-directories" "/share/gtksourceview-2.0" ]; -- cgit 1.4.1 From 25b4b3523251373802ae237564b60a2ac644010b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Apr 2016 20:29:30 +0200 Subject: betamax: Disable tests As said in #15037, the tests fail due to a network error as the tests expect to have network access. This simply disables the tests, which is not optimal, of course. I do not understand the whole python infrastructure, so I'm not able to disable only the failing-because-of-network-access 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 447481db7b38d..b25874678c590 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1717,6 +1717,8 @@ in modules // { propagatedBuildInputs = [ self.requests2 ]; + doCheck = false; + meta = with stdenv.lib; { homepage = https://betamax.readthedocs.org/en/latest/; description = "A VCR imitation for requests"; -- cgit 1.4.1 From b465dc202f0ba6e5ce465c5dabca2b2a3560cad6 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 28 Apr 2016 00:41:28 +0300 Subject: boost: Kill unnecessary 'lib' output This was split in somewhere pre-2014 without the current infra which automates parts of this, in particular the output propagation. --- pkgs/applications/altcoins/bitcoin-classic.nix | 2 +- pkgs/applications/altcoins/bitcoin-xt.nix | 2 +- pkgs/applications/altcoins/bitcoin.nix | 2 +- pkgs/applications/altcoins/dashpay.nix | 2 +- pkgs/applications/altcoins/dogecoin.nix | 2 +- pkgs/applications/altcoins/litecoin.nix | 2 +- pkgs/applications/altcoins/memorycoin.nix | 2 +- pkgs/applications/altcoins/primecoin.nix | 2 +- pkgs/applications/graphics/synfigstudio/default.nix | 2 +- .../networking/instant-messengers/ekiga/default.nix | 2 +- pkgs/applications/networking/p2p/qbittorrent/default.nix | 2 +- pkgs/applications/networking/p2p/twister/default.nix | 2 +- pkgs/applications/office/libreoffice/default.nix | 2 +- pkgs/applications/office/libreoffice/still.nix | 2 +- pkgs/applications/version-management/gource/default.nix | 2 +- pkgs/applications/video/aegisub/default.nix | 2 +- pkgs/applications/video/mkvtoolnix/default.nix | 2 +- pkgs/development/interpreters/pixie/default.nix | 4 ++-- pkgs/development/libraries/audio/lvtk/default.nix | 2 +- pkgs/development/libraries/blitz/default.nix | 4 ++-- pkgs/development/libraries/boost/generic.nix | 11 +++-------- pkgs/development/libraries/folly/default.nix | 2 +- pkgs/development/libraries/libtorrent-rasterbar/generic.nix | 2 +- pkgs/development/libraries/ndn-cxx/default.nix | 2 +- pkgs/development/libraries/swiften/default.nix | 2 +- pkgs/development/r-modules/default.nix | 2 +- pkgs/tools/filesystems/ceph/generic.nix | 2 +- pkgs/tools/filesystems/xtreemfs/default.nix | 2 +- pkgs/tools/text/source-highlight/default.nix | 2 +- 29 files changed, 33 insertions(+), 38 deletions(-) diff --git a/pkgs/applications/altcoins/bitcoin-classic.nix b/pkgs/applications/altcoins/bitcoin-classic.nix index 62fe419792942..0c87530850299 100644 --- a/pkgs/applications/altcoins/bitcoin-classic.nix +++ b/pkgs/applications/altcoins/bitcoin-classic.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = { diff --git a/pkgs/applications/altcoins/bitcoin-xt.nix b/pkgs/applications/altcoins/bitcoin-xt.nix index e678d6e4acb39..fd2d2f35bcb4e 100644 --- a/pkgs/applications/altcoins/bitcoin-xt.nix +++ b/pkgs/applications/altcoins/bitcoin-xt.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec{ ++ optionals withGui [ qt4 qrencode ]; configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-libcurl-headers=${curl.dev}/include" ] ++ optionals withGui [ "--with-gui=qt4" ]; diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index 1a57463571134..7b4e7d54f323e 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec{ ++ optionals stdenv.isLinux [ utillinux ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = { diff --git a/pkgs/applications/altcoins/dashpay.nix b/pkgs/applications/altcoins/dashpay.nix index 2e9f17017a2df..ef42560ee9aa0 100644 --- a/pkgs/applications/altcoins/dashpay.nix +++ b/pkgs/applications/altcoins/dashpay.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig autoreconfHook glib openssl db48 yasm boost zlib miniupnpc protobuf qt4 qrencode utillinux ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; meta = with stdenv.lib; { version = "0.12.0.55"; diff --git a/pkgs/applications/altcoins/dogecoin.nix b/pkgs/applications/altcoins/dogecoin.nix index cf2f25bfeeef7..c74f7ce7f2414 100644 --- a/pkgs/applications/altcoins/dogecoin.nix +++ b/pkgs/applications/altcoins/dogecoin.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { ''; configureFlags = [ "--with-incompatible-bdb" - "--with-boost-libdir=${boost.lib}/lib" ] + "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui" ]; meta = { diff --git a/pkgs/applications/altcoins/litecoin.nix b/pkgs/applications/altcoins/litecoin.nix index 4e0198b972d41..38e671e899409 100644 --- a/pkgs/applications/altcoins/litecoin.nix +++ b/pkgs/applications/altcoins/litecoin.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { openssl db48 boost zlib miniupnpc glib protobuf utillinux ] ++ optionals withGui [ qt4 qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/altcoins/memorycoin.nix b/pkgs/applications/altcoins/memorycoin.nix index 0470fd21eaea6..d30133fa55117 100644 --- a/pkgs/applications/altcoins/memorycoin.nix +++ b/pkgs/applications/altcoins/memorycoin.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec{ miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qmake4Hook qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; diff --git a/pkgs/applications/altcoins/primecoin.nix b/pkgs/applications/altcoins/primecoin.nix index 360a39a4fd81b..7d25a26fba25e 100644 --- a/pkgs/applications/altcoins/primecoin.nix +++ b/pkgs/applications/altcoins/primecoin.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec{ miniupnpc utillinux protobuf ] ++ optionals withGui [ qt4 qmake4Hook qrencode ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ] + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] ++ optionals withGui [ "--with-gui=qt4" ]; preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile"; diff --git a/pkgs/applications/graphics/synfigstudio/default.nix b/pkgs/applications/graphics/synfigstudio/default.nix index 0dd4eab35f1eb..28a264af965c6 100644 --- a/pkgs/applications/graphics/synfigstudio/default.nix +++ b/pkgs/applications/graphics/synfigstudio/default.nix @@ -35,7 +35,7 @@ let configureFlags = [ "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" ]; buildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/ekiga/default.nix b/pkgs/applications/networking/instant-messengers/ekiga/default.nix index b7b9231591174..da6bf44ced110 100644 --- a/pkgs/applications/networking/instant-messengers/ekiga/default.nix +++ b/pkgs/applications/networking/instant-messengers/ekiga/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ldap-dir=${openldap}" "--with-libsasl2-dir=${cyrus_sasl}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--disable-gconf" ]; diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 31931aa75d92f..f08595028cb32 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ++ optional guiSupport dbus_libs; configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-boost=${boost.dev}" (if guiSupport then "" else "--disable-gui") (if webuiSupport then "" else "--disable-webui") diff --git a/pkgs/applications/networking/p2p/twister/default.nix b/pkgs/applications/networking/p2p/twister/default.nix index d8685da8d81f8..6f8ebb994c5fd 100644 --- a/pkgs/applications/networking/p2p/twister/default.nix +++ b/pkgs/applications/networking/p2p/twister/default.nix @@ -29,7 +29,7 @@ in stdenv.mkDerivation rec { "--disable-deprecated-functions" "--enable-tests" "--enable-python-binding" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" ]; buildInputs = [ diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 450c15bb65e3a..c2ad0929f0167 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -172,7 +172,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "${if withHelp then "" else "--without-help"}" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-beanshell-jar=${bsh}" "--with-vendor=NixOS" "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar" diff --git a/pkgs/applications/office/libreoffice/still.nix b/pkgs/applications/office/libreoffice/still.nix index 0e4d2d7976291..e6296bb045bb1 100644 --- a/pkgs/applications/office/libreoffice/still.nix +++ b/pkgs/applications/office/libreoffice/still.nix @@ -172,7 +172,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "${if withHelp then "" else "--without-help"}" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-beanshell-jar=${bsh}" "--with-vendor=NixOS" "--with-commons-logging-jar=${commonsLogging}/share/java/commons-logging-1.2.jar" diff --git a/pkgs/applications/version-management/gource/default.nix b/pkgs/applications/version-management/gource/default.nix index 82b3f7aed0950..0e30f0239bfc5 100644 --- a/pkgs/applications/version-management/gource/default.nix +++ b/pkgs/applications/version-management/gource/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { boost glm ]; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; NIX_CFLAGS_COMPILE = "-fpermissive " + # fix build with newer gcc versions "-std=c++11"; # fix build with glm >= 0.9.6.0 diff --git a/pkgs/applications/video/aegisub/default.nix b/pkgs/applications/video/aegisub/default.nix index a5c14d0888ff4..92a2f4fb63433 100644 --- a/pkgs/applications/video/aegisub/default.nix +++ b/pkgs/applications/video/aegisub/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { buildInputs = with stdenv.lib; [ pkgconfig intltool libX11 wxGTK fontconfig freetype mesa - libass fftw ffms ffmpeg zlib icu boost boost.lib libiconv + libass fftw ffms ffmpeg zlib icu boost boost.out libiconv ] ++ optional spellcheckSupport hunspell ++ optional automationSupport lua diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index 05bd5ad980bdb..ca86906d3e198 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-magic" "--enable-optimization" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--disable-debug" "--disable-profiling" "--disable-precompiled-headers" diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix index c4086078d7d6b..6a7424eb5cdff 100644 --- a/pkgs/development/interpreters/pixie/default.nix +++ b/pkgs/development/interpreters/pixie/default.nix @@ -22,7 +22,7 @@ let url = "https://bitbucket.org/pypy/pypy/get/${pypy-tag}.tar.bz2"; sha256 = "1cs9xqs1rmzdcnwxxkbvy064s5cbp6vvzhn2jmyzh5kg4di1r3bn"; }; - libs = [ libffi libedit libuv boost.dev boost.lib zlib ]; + libs = [ libffi libedit libuv boost.dev boost.out zlib ]; include-path = stdenv.lib.concatStringsSep ":" (map (p: "${p}/include") libs); library-path = stdenv.lib.concatStringsSep ":" @@ -47,7 +47,7 @@ let patchPhase = '' (cd pixie-src patch -p1 < ${./load_paths.patch} - libraryPaths='["${libuv}" "${libedit}" "${libffi}" "${boost.dev}" "${boost.lib}" "${zlib}"]' + libraryPaths='["${libuv}" "${libedit}" "${libffi}" "${boost.dev}" "${boost.out}" "${zlib}"]' export libraryPaths substituteAllInPlace ./pixie/ffi-infer.pxi) ''; diff --git a/pkgs/development/libraries/audio/lvtk/default.nix b/pkgs/development/libraries/audio/lvtk/default.nix index 401743ac517fa..a56425b8425be 100644 --- a/pkgs/development/libraries/audio/lvtk/default.nix +++ b/pkgs/development/libraries/audio/lvtk/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { configurePhase = '' python waf configure --prefix=$out \ --boost-includes="${boost.dev}/include" \ - --boost-libs="${boost.lib}/lib" + --boost-libs="${boost.out}/lib" ''; buildPhase = "python waf"; diff --git a/pkgs/development/libraries/blitz/default.nix b/pkgs/development/libraries/blitz/default.nix index e6f59ca8efeb4..ab34f64dfbfc8 100644 --- a/pkgs/development/libraries/blitz/default.nix +++ b/pkgs/development/libraries/blitz/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { patches = [ ./blitz-gcc47.patch ./blitz-testsuite-stencil-et.patch ]; buildInputs = [ pkgconfig gfortran texinfo ] - ++ optional (boost != null) [ boost.lib ]; + ++ optional (boost != null) [ boost.out ]; configureFlags = [ "--enable-shared" @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { ++ optional enablePadding "--enable-array-length-padding" ++ optional enableSerialization "--enable-serialization" ++ optionals (boost != null) [ "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" ] + "--with-boost-libdir=${boost.out}/lib" ] ++ optional stdenv.is64bit "--enable-64bit" ; diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 5b0c06bd6bb2a..931a2ad8db638 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -53,7 +53,7 @@ let genericB2Flags = [ "--includedir=$dev/include" - "--libdir=$lib/lib" + "--libdir=$out/lib" "-j$NIX_BUILD_CORES" "--layout=${layout}" "variant=${variant}" @@ -90,10 +90,6 @@ let # Let boost install everything else ./b2 ${b2Args} install - - # Create a derivation which encompasses everything, making buildInputs nicer - mkdir -p $out/nix-support - echo "$dev $lib" > $out/nix-support/propagated-native-build-inputs ''; commonConfigureFlags = [ @@ -127,10 +123,9 @@ stdenv.mkDerivation { }; preConfigure = '' - NIX_LDFLAGS="$(echo $NIX_LDFLAGS | sed "s,$out,$lib,g")" if test -f tools/build/src/tools/clang-darwin.jam ; then substituteInPlace tools/build/src/tools/clang-darwin.jam \ - --replace '@rpath/$(<[1]:D=)' "$lib/lib/\$(<[1]:D=)"; + --replace '@rpath/$(<[1]:D=)' "$out/lib/\$(<[1]:D=)"; fi; '' + optionalString (mpi != null) '' cat << EOF > user-config.jam @@ -158,7 +153,7 @@ stdenv.mkDerivation { postFixup = fixup; - outputs = [ "out" "dev" "lib" ]; + outputs = [ "dev" "out" ]; setOutputFlags = false; crossAttrs = rec { diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 046b7f97ba448..63fb8de0fffc6 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { patchShebangs build ''; - configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ]; + configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libtorrent-rasterbar/generic.nix b/pkgs/development/libraries/libtorrent-rasterbar/generic.nix index a5bb258af1a93..d840487b4a53a 100644 --- a/pkgs/development/libraries/libtorrent-rasterbar/generic.nix +++ b/pkgs/development/libraries/libtorrent-rasterbar/generic.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { "--with-libgeoip=system" "--with-libiconv=yes" "--with-boost=${boost.dev}" - "--with-boost-libdir=${boost.lib}/lib" + "--with-boost-libdir=${boost.out}/lib" "--with-libiconv=yes" ]; diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix index d95443da359d8..87aaaece53f64 100644 --- a/pkgs/development/libraries/ndn-cxx/default.nix +++ b/pkgs/development/libraries/ndn-cxx/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { ./waf configure \ --with-cryptopp=${cryptopp} \ --boost-includes=${boost.dev}/include \ - --boost-libs=${boost.lib}/lib \ + --boost-libs=${boost.out}/lib \ --with-examples \ --prefix=$out ''; diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix index 64ea6fa0e74b6..46ecada966871 100644 --- a/pkgs/development/libraries/swiften/default.nix +++ b/pkgs/development/libraries/swiften/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { patchShebangs ./scons ./scons openssl=${openssl} \ boost_includedir=${boost.dev}/include \ - boost_libdir=${boost.lib}/lib \ + boost_libdir=${boost.out}/lib \ boost_bundled_enable=false \ SWIFTEN_INSTALLDIR=$out $out ''; diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 955dd9ed667d4..99cb9d03ab619 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -1866,7 +1866,7 @@ let RVowpalWabbit = old.RVowpalWabbit.overrideDerivation (attrs: { configureFlags = [ - "--with-boost=${pkgs.boost.dev}" "--with-boost-libdir=${pkgs.boost.lib}/lib" + "--with-boost=${pkgs.boost.dev}" "--with-boost-libdir=${pkgs.boost.out}/lib" ]; }); diff --git a/pkgs/tools/filesystems/ceph/generic.nix b/pkgs/tools/filesystems/ceph/generic.nix index 19457e136556f..ad237e408c66d 100644 --- a/pkgs/tools/filesystems/ceph/generic.nix +++ b/pkgs/tools/filesystems/ceph/generic.nix @@ -267,7 +267,7 @@ stdenv.mkDerivation { # Fix .la file link dependencies find "$lib/lib" -name \*.la | xargs sed -i \ - -e 's,-lboost_[a-z]*,-L${boost.lib}/lib \0,g' \ + -e 's,-lboost_[a-z]*,-L${boost.out}/lib \0,g' \ '' + optionalString (cryptoStr == "cryptopp") '' -e 's,-lcryptopp,-L${optCryptopp}/lib \0,g' \ '' + optionalString (cryptoStr == "nss") '' diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix index 556cb674212d9..bbd4b185d5ec8 100644 --- a/pkgs/tools/filesystems/xtreemfs/default.nix +++ b/pkgs/tools/filesystems/xtreemfs/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { export ANT_HOME=${ant} export BOOST_INCLUDEDIR=${boost.dev}/include - export BOOST_LIBRARYDIR=${boost.lib}/lib + export BOOST_LIBRARYDIR=${boost.out}/lib export OPENSSL_ROOT_DIR=${openssl} substituteInPlace cpp/cmake/FindValgrind.cmake \ diff --git a/pkgs/tools/text/source-highlight/default.nix b/pkgs/tools/text/source-highlight/default.nix index d5530a3df9166..5015a220afb57 100644 --- a/pkgs/tools/text/source-highlight/default.nix +++ b/pkgs/tools/text/source-highlight/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { buildInputs = [ boost ]; - configureFlags = [ "--with-boost=${boost.lib}" ]; + configureFlags = [ "--with-boost=${boost.out}" ]; enableParallelBuilding = false; -- cgit 1.4.1 From 279a01d0dcbe4629687c95d897069ac6351d3c86 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Wed, 27 Apr 2016 23:19:02 -0400 Subject: util-linux: 2.27.1 -> 2.28 --- pkgs/os-specific/linux/util-linux/default.nix | 9 ++++--- .../rtcwake-search-PATH-for-shutdown.patch | 29 +++++++++++----------- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix index 263fa4490dc8b..62290df1a6e88 100644 --- a/pkgs/os-specific/linux/util-linux/default.nix +++ b/pkgs/os-specific/linux/util-linux/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, pkgconfig, zlib, ncurses ? null, perl ? null, pam, systemd }: stdenv.mkDerivation rec { - name = "util-linux-2.27.1"; + name = "util-linux-${version}"; + version = "2.28"; src = fetchurl { - url = "mirror://kernel/linux/utils/util-linux/v2.27/${name}.tar.xz"; - sha256 = "1452hz5zx56a3mad8yrg5wb0vy5zi19mpjp6zx1yr6p9xp6qz08a"; + url = "mirror://kernel/linux/utils/util-linux/v${version}/${name}.tar.xz"; + sha512 = "251zv6lk6b8ip38w2h0w2rpnly38nzh96945mbpssvwjv8fgr5bnhj3207aingyybik79761zngk981wl0rblq5f7l5v655znyi3yd1"; }; patches = [ @@ -63,7 +64,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - homepage = http://www.kernel.org/pub/linux/utils/util-linux/; + homepage = https://www.kernel.org/pub/linux/utils/util-linux/; description = "A set of system utilities for Linux"; license = licenses.gpl2; # also contains parts under more permissive licenses platforms = platforms.linux; diff --git a/pkgs/os-specific/linux/util-linux/rtcwake-search-PATH-for-shutdown.patch b/pkgs/os-specific/linux/util-linux/rtcwake-search-PATH-for-shutdown.patch index 68970c655f150..3615984ed0cb5 100644 --- a/pkgs/os-specific/linux/util-linux/rtcwake-search-PATH-for-shutdown.patch +++ b/pkgs/os-specific/linux/util-linux/rtcwake-search-PATH-for-shutdown.patch @@ -3,23 +3,24 @@ which isn't valid on NixOS (and a compatibility link on most other modern distros anyway). -- nckx - -diff -ru util-linux-2.27-orig/include/pathnames.h util-linux-2.27/include/pathnames.h ---- util-linux-2.27-orig/include/pathnames.h 2015-06-29 13:13:14.669847478 +0200 -+++ util-linux-2.27/include/pathnames.h 2015-10-07 20:09:17.401022602 +0200 -@@ -54,7 +54,7 @@ - #define _PATH_INITTAB "/etc/inittab" - #define _PATH_RC "/etc/rc" - #define _PATH_REBOOT "/sbin/reboot" +diff --git a/include/pathnames.h b/include/pathnames.h +index de6a13c..0c1aeb9 100644 +--- a/include/pathnames.h ++++ b/include/pathnames.h +@@ -50,7 +50,7 @@ + #define _PATH_VAR_NOLOGIN "/var/run/nologin" + + #define _PATH_LOGIN "/bin/login" -#define _PATH_SHUTDOWN "/sbin/shutdown" +#define _PATH_SHUTDOWN "shutdown" - #define _PATH_SINGLE "/etc/singleboot" - #define _PATH_SHUTDOWN_CONF "/etc/shutdown.conf" -diff -ru util-linux-2.27-orig/sys-utils/rtcwake.c util-linux-2.27/sys-utils/rtcwake.c ---- util-linux-2.27-orig/sys-utils/rtcwake.c 2015-08-05 11:32:44.453821232 +0200 -+++ util-linux-2.27/sys-utils/rtcwake.c 2015-10-07 20:09:37.834032536 +0200 -@@ -576,7 +576,7 @@ + #define _PATH_TERMCOLORS_DIRNAME "terminal-colors.d" + #define _PATH_TERMCOLORS_DIR "/etc/" _PATH_TERMCOLORS_DIRNAME +diff --git a/sys-utils/rtcwake.c b/sys-utils/rtcwake.c +index 7c748dc..9a99a7c 100644 +--- a/sys-utils/rtcwake.c ++++ b/sys-utils/rtcwake.c +@@ -575,7 +575,7 @@ int main(int argc, char **argv) arg[i++] = "now"; arg[i] = NULL; if (!ctl.dryrun) { -- cgit 1.4.1 From 58e0c4bcd9d6c1d509fbd5c12f1d5d1c29e05a29 Mon Sep 17 00:00:00 2001 From: David Guibert Date: Thu, 28 Apr 2016 11:13:26 +0200 Subject: gcc: add 6.1.0 --- pkgs/development/compilers/gcc/6/default.nix | 538 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 23 ++ 2 files changed, 561 insertions(+) create mode 100644 pkgs/development/compilers/gcc/6/default.nix diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix new file mode 100644 index 0000000000000..cbd4e1e340c9b --- /dev/null +++ b/pkgs/development/compilers/gcc/6/default.nix @@ -0,0 +1,538 @@ +{ stdenv, fetchurl, noSysDirs +, langC ? true, langCC ? true, langFortran ? false +, langObjC ? stdenv.isDarwin +, langObjCpp ? stdenv.isDarwin +, langJava ? false +, langAda ? false +, langVhdl ? false +, langGo ? false +, profiledCompiler ? false +, staticCompiler ? false +, enableShared ? true +, texinfo ? null +, perl ? null # optional, for texi2pod (then pod2man); required for Java +, gmp, mpfr, libmpc, gettext, which +, libelf # optional, for link-time optimizations (LTO) +, isl ? null # optional, for the Graphite optimization framework. +, zlib ? null, boehmgc ? null +, zip ? null, unzip ? null, pkgconfig ? null +, gtk ? null, libart_lgpl ? null +, libX11 ? null, libXt ? null, libSM ? null, libICE ? null, libXtst ? null +, libXrender ? null, xproto ? null, renderproto ? null, xextproto ? null +, libXrandr ? null, libXi ? null, inputproto ? null, randrproto ? null +, x11Support ? langJava +, gnatboot ? null +, enableMultilib ? false +, enablePlugin ? true # whether to support user-supplied plug-ins +, name ? "gcc" +, cross ? null +, binutilsCross ? null +, libcCross ? null +, crossStageStatic ? true +, gnat ? null +, libpthread ? null, libpthreadCross ? null # required for GNU/Hurd +, stripped ? true +, gnused ? null +, binutils ? null +, cloog # unused; just for compat with gcc4, as we override the parameter on some places +}: + +assert langJava -> zip != null && unzip != null + && zlib != null && boehmgc != null + && perl != null; # for `--enable-java-home' +assert langAda -> gnatboot != null; +assert langVhdl -> gnat != null; + +# LTO needs libelf and zlib. +assert libelf != null -> zlib != null; + +# Make sure we get GNU sed. +assert stdenv.isDarwin -> gnused != null; + +# Need c++filt on darwin +assert stdenv.isDarwin -> binutils != null; + +# The go frontend is written in c++ +assert langGo -> langCC; + +with stdenv.lib; +with builtins; + +let version = "6.1.0"; + + # Whether building a cross-compiler for GNU/Hurd. + crossGNU = cross != null && cross.config == "i586-pc-gnu"; + + enableParallelBuilding = true; + + patches = + [ ../use-source-date-epoch.patch ] + ++ optional (cross != null) ../libstdc++-target.patch + ++ optional noSysDirs ../no-sys-dirs.patch + # The GNAT Makefiles did not pay attention to CFLAGS_FOR_TARGET for its + # target libraries and tools. + ++ optional langAda ../gnat-cflags.patch + ++ optional langFortran ../gfortran-driving.patch; + + javaEcj = fetchurl { + # The `$(top_srcdir)/ecj.jar' file is automatically picked up at + # `configure' time. + + # XXX: Eventually we might want to take it from upstream. + url = "ftp://sourceware.org/pub/java/ecj-4.3.jar"; + sha256 = "0jz7hvc0s6iydmhgh5h2m15yza7p2rlss2vkif30vm9y77m97qcx"; + }; + + # Antlr (optional) allows the Java `gjdoc' tool to be built. We want a + # binary distribution here to allow the whole chain to be bootstrapped. + javaAntlr = fetchurl { + url = http://www.antlr.org/download/antlr-4.4-complete.jar; + sha256 = "02lda2imivsvsis8rnzmbrbp8rh1kb8vmq4i67pqhkwz7lf8y6dz"; + }; + + xlibs = [ + libX11 libXt libSM libICE libXtst libXrender libXrandr libXi + xproto renderproto xextproto inputproto randrproto + ]; + + javaAwtGtk = langJava && x11Support; + + /* Platform flags */ + platformFlags = let + gccArch = stdenv.platform.gcc.arch or null; + gccCpu = stdenv.platform.gcc.cpu or null; + gccAbi = stdenv.platform.gcc.abi or null; + gccFpu = stdenv.platform.gcc.fpu or null; + gccFloat = stdenv.platform.gcc.float or null; + gccMode = stdenv.platform.gcc.mode or null; + withArch = if gccArch != null then " --with-arch=${gccArch}" else ""; + withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else ""; + withAbi = if gccAbi != null then " --with-abi=${gccAbi}" else ""; + withFpu = if gccFpu != null then " --with-fpu=${gccFpu}" else ""; + withFloat = if gccFloat != null then " --with-float=${gccFloat}" else ""; + withMode = if gccMode != null then " --with-mode=${gccMode}" else ""; + in + withArch + + withCpu + + withAbi + + withFpu + + withFloat + + withMode; + + /* Cross-gcc settings */ + crossMingw = cross != null && cross.libc == "msvcrt"; + crossDarwin = cross != null && cross.libc == "libSystem"; + crossConfigureFlags = let + gccArch = stdenv.cross.gcc.arch or null; + gccCpu = stdenv.cross.gcc.cpu or null; + gccAbi = stdenv.cross.gcc.abi or null; + gccFpu = stdenv.cross.gcc.fpu or null; + gccFloat = stdenv.cross.gcc.float or null; + gccMode = stdenv.cross.gcc.mode or null; + withArch = if gccArch != null then " --with-arch=${gccArch}" else ""; + withCpu = if gccCpu != null then " --with-cpu=${gccCpu}" else ""; + withAbi = if gccAbi != null then " --with-abi=${gccAbi}" else ""; + withFpu = if gccFpu != null then " --with-fpu=${gccFpu}" else ""; + withFloat = if gccFloat != null then " --with-float=${gccFloat}" else ""; + withMode = if gccMode != null then " --with-mode=${gccMode}" else ""; + in + "--target=${cross.config}" + + withArch + + withCpu + + withAbi + + withFpu + + withFloat + + withMode + + (if crossMingw && crossStageStatic then + " --with-headers=${libcCross}/include" + + " --with-gcc" + + " --with-gnu-as" + + " --with-gnu-ld" + + " --with-gnu-ld" + + " --disable-shared" + + " --disable-nls" + + " --disable-debug" + + " --enable-sjlj-exceptions" + + " --enable-threads=win32" + + " --disable-win32-registry" + else if crossStageStatic then + " --disable-libssp --disable-nls" + + " --without-headers" + + " --disable-threads " + + " --disable-libgomp " + + " --disable-libquadmath" + + " --disable-shared" + + " --disable-libatomic " + # libatomic requires libc + " --disable-decimal-float" # libdecnumber requires libc + else + (if crossDarwin then " --with-sysroot=${libcCross}/share/sysroot" + else " --with-headers=${libcCross}/include") + + # Ensure that -print-prog-name is able to find the correct programs. + (stdenv.lib.optionalString (crossMingw || crossDarwin) ( + " --with-as=${binutilsCross}/bin/${cross.config}-as" + + " --with-ld=${binutilsCross}/bin/${cross.config}-ld" + )) + + " --enable-__cxa_atexit" + + " --enable-long-long" + + (if crossMingw then + " --enable-threads=win32" + + " --enable-sjlj-exceptions" + + " --enable-hash-synchronization" + + " --disable-libssp" + + " --disable-nls" + + " --with-dwarf2" + + # I think noone uses shared gcc libs in mingw, so we better do the same. + # In any case, mingw32 g++ linking is broken by default with shared libs, + # unless adding "-lsupc++" to any linking command. I don't know why. + " --disable-shared" + + # To keep ABI compatibility with upstream mingw-w64 + " --enable-fully-dynamic-string" + else (if cross.libc == "uclibc" then + # In uclibc cases, libgomp needs an additional '-ldl' + # and as I don't know how to pass it, I disable libgomp. + " --disable-libgomp" else "") + + " --enable-threads=posix" + + " --enable-nls" + + " --disable-decimal-float") # No final libdecnumber (it may work only in 386) + ); + stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final"; + crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; + + bootstrap = cross == null; + +in + +# We need all these X libraries when building AWT with GTK+. +assert x11Support -> (filter (x: x == null) ([ gtk libart_lgpl ] ++ xlibs)) == []; + +stdenv.mkDerivation ({ + name = "${name}${if stripped then "" else "-debug"}-${version}" + crossNameAddon; + + builder = ../builder.sh; + + src = fetchurl { + url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; + sha256 = "0ld3y4rgimyqgx1nwvzqyl5gr4wzc0ch4akkvsqp3fgbmdfcii09"; + }; + + inherit patches; + + outputs = [ "out" "lib" "man" "info" ]; + setOutputFlags = false; + NIX_NO_SELF_RPATH = true; + + libc_dev = stdenv.cc.libc_dev; + + postPatch = + if (stdenv.isGNU + || (libcCross != null # e.g., building `gcc.crossDrv' + && libcCross ? crossConfig + && libcCross.crossConfig == "i586-pc-gnu") + || (crossGNU && libcCross != null)) + then + # On GNU/Hurd glibc refers to Hurd & Mach headers and libpthread is not + # in glibc, so add the right `-I' flags to the default spec string. + assert libcCross != null -> libpthreadCross != null; + let + libc = if libcCross != null then libcCross else stdenv.glibc; + gnu_h = "gcc/config/gnu.h"; + extraCPPDeps = + libc.propagatedBuildInputs + ++ stdenv.lib.optional (libpthreadCross != null) libpthreadCross + ++ stdenv.lib.optional (libpthread != null) libpthread; + extraCPPSpec = + concatStrings (intersperse " " + (map (x: "-I${x}/include") extraCPPDeps)); + extraLibSpec = + if libpthreadCross != null + then "-L${libpthreadCross}/lib ${libpthreadCross.TARGET_LDFLAGS}" + else "-L${libpthread}/lib"; + in + '' echo "augmenting \`CPP_SPEC' in \`${gnu_h}' with \`${extraCPPSpec}'..." + sed -i "${gnu_h}" \ + -es'|CPP_SPEC *"\(.*\)$|CPP_SPEC "${extraCPPSpec} \1|g' + + echo "augmenting \`LIB_SPEC' in \`${gnu_h}' with \`${extraLibSpec}'..." + sed -i "${gnu_h}" \ + -es'|LIB_SPEC *"\(.*\)$|LIB_SPEC "${extraLibSpec} \1|g' + + echo "setting \`NATIVE_SYSTEM_HEADER_DIR' and \`STANDARD_INCLUDE_DIR' to \`${libc}/include'..." + sed -i "${gnu_h}" \ + -es'|#define STANDARD_INCLUDE_DIR.*$|#define STANDARD_INCLUDE_DIR "${libc}/include"|g' + '' + else if cross != null || stdenv.cc.libc != null then + # On NixOS, use the right path to the dynamic linker instead of + # `/lib/ld*.so'. + let + libc = if libcCross != null then libcCross else stdenv.cc.libc; + in + '' echo "fixing the \`GLIBC_DYNAMIC_LINKER' and \`UCLIBC_DYNAMIC_LINKER' macros..." + for header in "gcc/config/"*-gnu.h "gcc/config/"*"/"*.h + do + grep -q LIBC_DYNAMIC_LINKER "$header" || continue + echo " fixing \`$header'..." + sed -i "$header" \ + -e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc}\3"|g' + done + '' + else null; + + inherit noSysDirs staticCompiler langJava crossStageStatic + libcCross crossMingw; + + nativeBuildInputs = [ texinfo which gettext ] + ++ (optional (perl != null) perl) + ++ (optional javaAwtGtk pkgconfig); + + buildInputs = [ gmp mpfr libmpc libelf ] + ++ (optional (isl != null) isl) + ++ (optional (zlib != null) zlib) + ++ (optionals langJava [ boehmgc zip unzip ]) + ++ (optionals javaAwtGtk ([ gtk libart_lgpl ] ++ xlibs)) + ++ (optionals (cross != null) [binutilsCross]) + ++ (optionals langAda [gnatboot]) + ++ (optionals langVhdl [gnat]) + + # The builder relies on GNU sed (for instance, Darwin's `sed' fails with + # "-i may not be used with stdin"), and `stdenvNative' doesn't provide it. + ++ (optional stdenv.isDarwin gnused) + ++ (optional stdenv.isDarwin binutils) + ; + + NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isSunOS "-lm -ldl"; + + preConfigure = stdenv.lib.optionalString (stdenv.isSunOS && stdenv.is64bit) '' + export NIX_LDFLAGS=`echo $NIX_LDFLAGS | sed -e s~$prefix/lib~$prefix/lib/amd64~g` + export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET" + export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET" + export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET" + '' + stdenv.lib.optionalString stdenv.isDarwin '' + if SDKROOT=$(/usr/bin/xcrun --show-sdk-path); then + configureFlagsArray+=(--with-native-system-header-dir=$SDKROOT/usr/include) + makeFlagsArray+=( \ + CFLAGS_FOR_BUILD=-F$SDKROOT/System/Library/Frameworks \ + CFLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \ + FLAGS_FOR_TARGET=-F$SDKROOT/System/Library/Frameworks \ + ) + fi + ''; + + dontDisableStatic = true; + + configureFlags = " + ${if stdenv.isSunOS then + " --enable-long-long --enable-libssp --enable-threads=posix --disable-nls --enable-__cxa_atexit " + + # On Illumos/Solaris GNU as is preferred + " --with-gnu-as --without-gnu-ld " + else ""} + --enable-lto + ${if enableMultilib then "--enable-multilib --disable-libquadmath" else "--disable-multilib"} + ${if enableShared then "" else "--disable-shared"} + ${if enablePlugin then "--enable-plugin" else "--disable-plugin"} + ${optionalString (isl != null) "--with-isl=${isl}"} + ${if langJava then + "--with-ecj-jar=${javaEcj} " + + + # Follow Sun's layout for the convenience of IcedTea/OpenJDK. See + # . + "--enable-java-home --with-java-home=\${prefix}/lib/jvm/jre " + else ""} + ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} + ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr}" else ""} + --with-gmp=${gmp} + --with-mpfr=${mpfr} + --with-mpc=${libmpc} + ${if libelf != null then "--with-libelf=${libelf}" else ""} + --disable-libstdcxx-pch + --without-included-gettext + --with-system-zlib + --enable-static + --enable-languages=${ + concatStrings (intersperse "," + ( optional langC "c" + ++ optional langCC "c++" + ++ optional langFortran "fortran" + ++ optional langJava "java" + ++ optional langAda "ada" + ++ optional langVhdl "vhdl" + ++ optional langGo "go" + ++ optional langObjC "objc" + ++ optional langObjCpp "obj-c++" + ++ optionals crossDarwin [ "objc" "obj-c++" ] + ) + ) + } + ${if (stdenv ? glibc && cross == null) + then " --with-native-system-header-dir=${stdenv.glibc.dev}/include" + else ""} + ${if langAda then " --enable-libada" else ""} + ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} + ${if cross != null then crossConfigureFlags else ""} + ${if !bootstrap then "--disable-bootstrap" else ""} + ${if cross == null then platformFlags else ""} + "; + + targetConfig = if cross != null then cross.config else null; + + buildFlags = if bootstrap then + (if profiledCompiler then "profiledbootstrap" else "bootstrap") + else ""; + + installTargets = + if stripped + then "install-strip" + else "install"; + + crossAttrs = let + xgccArch = stdenv.cross.gcc.arch or null; + xgccCpu = stdenv.cross.gcc.cpu or null; + xgccAbi = stdenv.cross.gcc.abi or null; + xgccFpu = stdenv.cross.gcc.fpu or null; + xgccFloat = stdenv.cross.gcc.float or null; + xwithArch = if xgccArch != null then " --with-arch=${xgccArch}" else ""; + xwithCpu = if xgccCpu != null then " --with-cpu=${xgccCpu}" else ""; + xwithAbi = if xgccAbi != null then " --with-abi=${xgccAbi}" else ""; + xwithFpu = if xgccFpu != null then " --with-fpu=${xgccFpu}" else ""; + xwithFloat = if xgccFloat != null then " --with-float=${xgccFloat}" else ""; + in { + AR = "${stdenv.cross.config}-ar"; + LD = "${stdenv.cross.config}-ld"; + CC = "${stdenv.cross.config}-gcc"; + CXX = "${stdenv.cross.config}-gcc"; + AR_FOR_TARGET = "${stdenv.cross.config}-ar"; + LD_FOR_TARGET = "${stdenv.cross.config}-ld"; + CC_FOR_TARGET = "${stdenv.cross.config}-gcc"; + NM_FOR_TARGET = "${stdenv.cross.config}-nm"; + CXX_FOR_TARGET = "${stdenv.cross.config}-g++"; + # If we are making a cross compiler, cross != null + NIX_CC_CROSS = if cross == null then "${stdenv.ccCross}" else ""; + dontStrip = true; + configureFlags = '' + ${if enableMultilib then "" else "--disable-multilib"} + ${if enableShared then "" else "--disable-shared"} + ${if langJava then "--with-ecj-jar=${javaEcj.crossDrv}" else ""} + ${if javaAwtGtk then "--enable-java-awt=gtk" else ""} + ${if langJava && javaAntlr != null then "--with-antlr-jar=${javaAntlr.crossDrv}" else ""} + --with-gmp=${gmp.crossDrv} + --with-mpfr=${mpfr.crossDrv} + --disable-libstdcxx-pch + --without-included-gettext + --with-system-zlib + --enable-languages=${ + concatStrings (intersperse "," + ( optional langC "c" + ++ optional langCC "c++" + ++ optional langFortran "fortran" + ++ optional langJava "java" + ++ optional langAda "ada" + ++ optional langVhdl "vhdl" + ++ optional langGo "go" + ) + ) + } + ${if langAda then " --enable-libada" else ""} + --target=${stdenv.cross.config} + ${xwithArch} + ${xwithCpu} + ${xwithAbi} + ${xwithFpu} + ${xwithFloat} + ''; + buildFlags = ""; + }; + + + # Needed for the cross compilation to work + AR = "ar"; + LD = "ld"; + # http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210 + CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc"; + + # Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find + # the library headers and binaries, regarless of the language being + # compiled. + + # Note: When building the Java AWT GTK+ peer, the build system doesn't + # honor `--with-gmp' et al., e.g., when building + # `libjava/classpath/native/jni/java-math/gnu_java_math_GMP.c', so we just + # add them to $CPATH and $LIBRARY_PATH in this case. + # + # Likewise, the LTO code doesn't find zlib. + + CPATH = concatStrings + (intersperse ":" (map (x: x + "/include") + (optionals (zlib != null) [ zlib ] + ++ optionals langJava [ boehmgc ] + ++ optionals javaAwtGtk xlibs + ++ optionals javaAwtGtk [ gmp mpfr ] + ++ optional (libpthread != null) libpthread + ++ optional (libpthreadCross != null) libpthreadCross + + # On GNU/Hurd glibc refers to Mach & Hurd + # headers. + ++ optionals (libcCross != null && libcCross ? "propagatedBuildInputs" ) + libcCross.propagatedBuildInputs))); + + LIBRARY_PATH = concatStrings + (intersperse ":" (map (x: x + "/lib") + (optionals (zlib != null) [ zlib ] + ++ optionals langJava [ boehmgc ] + ++ optionals javaAwtGtk xlibs + ++ optionals javaAwtGtk [ gmp mpfr ] + ++ optional (libpthread != null) libpthread))); + + EXTRA_TARGET_CFLAGS = + if cross != null && libcCross != null + then "-idirafter ${libcCross}/include" + else null; + + EXTRA_TARGET_LDFLAGS = + if cross != null && libcCross != null + then "-B${libcCross}/lib -Wl,-L${libcCross}/lib" + + (optionalString (libpthreadCross != null) + " -L${libpthreadCross}/lib -Wl,${libpthreadCross.TARGET_LDFLAGS}") + else null; + + passthru = + { inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version; isGNU = true; }; + + inherit enableParallelBuilding enableMultilib; + + inherit (stdenv) is64bit; + + meta = { + homepage = http://gcc.gnu.org/; + license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+ + description = "GNU Compiler Collection, version ${version}" + + (if stripped then "" else " (with debugging info)"); + + longDescription = '' + The GNU Compiler Collection includes compiler front ends for C, C++, + Objective-C, Fortran, OpenMP for C/C++/Fortran, Java, and Ada, as well + as libraries for these languages (libstdc++, libgcj, libgomp,...). + + GCC development is a part of the GNU Project, aiming to improve the + compiler used in the GNU system including the GNU/Linux variant. + ''; + + maintainers = with stdenv.lib.maintainers; [ viric simons ]; + + # gnatboot is not available out of linux platforms, so we disable the darwin build + # for the gnat (ada compiler). + platforms = + stdenv.lib.platforms.linux ++ + stdenv.lib.platforms.freebsd ++ + optionals (langAda == false) stdenv.lib.platforms.darwin; + }; +} + +// optionalAttrs (cross != null && cross.libc == "msvcrt" && crossStageStatic) { + makeFlags = [ "all-gcc" "all-target-libgcc" ]; + installTargets = "install-gcc install-target-libgcc"; +} + +# Strip kills static libs of other archs (hence cross != null) +// optionalAttrs (!stripped || cross != null) { dontStrip = true; NIX_STRIP_DEBUG = 0; } + +// optionalAttrs (enableMultilib) { dontMoveLib64 = true; } +) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cd576d1bea031..b40cf2faaa97b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4222,6 +4222,21 @@ in isl = isl_0_14; })); + gcc6 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/6 { + inherit noSysDirs; + + # PGO seems to speed up compilation by gcc by ~10%, see #445 discussion + profiledCompiler = with stdenv; (!isDarwin && (isi686 || isx86_64)); + + # When building `gcc.crossDrv' (a "Canadian cross", with host == target + # and host != build), `cross' must be null but the cross-libc must still + # be passed. + cross = null; + libcCross = if crossSystem != null then libcCross else null; + + isl = isl_0_14; + })); + gfortran = if !stdenv.isDarwin then gfortran5 else callPackage ../development/compilers/gcc/gfortran-darwin.nix { inherit (darwin) Libsystem; @@ -4251,6 +4266,14 @@ in profiledCompiler = false; }); + gfortran6 = wrapCC (gcc6.cc.override { + name = "gfortran"; + langFortran = true; + langCC = false; + langC = false; + profiledCompiler = false; + }); + gcj = gcj49; gcj49 = wrapCC (gcc49.cc.override { name = "gcj"; -- cgit 1.4.1 From d619a75da17371e21845fff2a6f9d8b547e46c45 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 28 Apr 2016 16:42:16 +0300 Subject: pulseaudio: select correct outputs Original fixes by ttuegel and peterhoeg. --- nixos/modules/config/pulseaudio.nix | 12 ++++++------ nixos/modules/services/x11/desktop-managers/kde4.nix | 2 +- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index f2db428a44411..a964e04531c1e 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -98,9 +98,9 @@ in { package = mkOption { type = types.package; - default = pulseaudioLight.out; - defaultText = "pkgs.pulseaudioLight.out"; - example = literalExample "pkgs.pulseaudioFull.out"; + default = pulseaudioLight; + defaultText = "pkgs.pulseaudioLight"; + example = literalExample "pkgs.pulseaudioFull"; description = '' The PulseAudio derivation to use. This can be used to enable features (such as JACK support, Bluetooth) via the @@ -130,7 +130,7 @@ in { source = clientConf; }; - hardware.pulseaudio.configFile = mkDefault "${cfg.package.out}/etc/pulse/default.pa"; + hardware.pulseaudio.configFile = mkDefault "${getBin cfg.package}/etc/pulse/default.pa"; } (mkIf cfg.enable { @@ -158,7 +158,7 @@ in { wantedBy = [ "default.target" ]; serviceConfig = { Type = "notify"; - ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no"; + ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no"; Restart = "on-failure"; }; }; @@ -195,7 +195,7 @@ in { environment.PULSE_RUNTIME_PATH = stateDir; serviceConfig = { Type = "notify"; - ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; + ExecStart = "${getBin cfg.package}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; Restart = "on-failure"; }; }; diff --git a/nixos/modules/services/x11/desktop-managers/kde4.nix b/nixos/modules/services/x11/desktop-managers/kde4.nix index 3b639f672170a..1927341e45d4e 100644 --- a/nixos/modules/services/x11/desktop-managers/kde4.nix +++ b/nixos/modules/services/x11/desktop-managers/kde4.nix @@ -111,7 +111,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} # Start KDE. diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index f90f4dc856de5..56b45609a2cdb 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -39,7 +39,7 @@ in # Load PulseAudio module for routing support. # See http://colin.guthr.ie/2009/10/so-how-does-the-kde-pulseaudio-support-work-anyway/ ${optionalString config.hardware.pulseaudio.enable '' - ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" + ${getBin config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} exec "${kde5.startkde}" -- cgit 1.4.1 From 8a67abb820cc8b489a93b0afd73869ef1f222bd3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Wed, 27 Apr 2016 13:59:40 +0200 Subject: pkgs.gzip: 1.7 -> 1.8 See http://lists.gnu.org/archive/html/info-gnu/2016-04/msg00012.html --- pkgs/tools/compression/gzip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/gzip/default.nix b/pkgs/tools/compression/gzip/default.nix index cf09ec8bf7390..31a67b1baf94f 100644 --- a/pkgs/tools/compression/gzip/default.nix +++ b/pkgs/tools/compression/gzip/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gzip-${version}"; - version = "1.7"; + version = "1.8"; src = fetchurl { url = "mirror://gnu/gzip/${name}.tar.xz"; - sha256 = "1as1ddq58spflzz5kxm0ni0xfpswrkkrncjpxyb3aw77gizcacgv"; + sha256 = "1lxv3p4iyx7833mlihkn5wfwmz4cys5nybwpz3dfawag8kn6f5zz"; }; outputs = [ "out" "man" "info" ]; -- cgit 1.4.1 From df42fe15828b39b7c4d72acba0c22afe237d826b Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Wed, 27 Apr 2016 14:17:05 +0200 Subject: pkgs.gnugrep: 2.22 -> 2.25 All releases between 2.22 and 2.25 are all bugfix releases: - 2.23: http://lists.gnu.org/archive/html/info-gnu/2016-02/msg00000.html - 2.24: http://lists.gnu.org/archive/html/info-gnu/2016-03/msg00004.html - 2.25: http://lists.gnu.org/archive/html/info-gnu/2016-04/msg00010.html --- pkgs/tools/text/gnugrep/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/gnugrep/default.nix b/pkgs/tools/text/gnugrep/default.nix index d618f842a4a5b..3e714871827de 100644 --- a/pkgs/tools/text/gnugrep/default.nix +++ b/pkgs/tools/text/gnugrep/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pcre, libiconv, perl }: -let version = "2.22"; in +let version = "2.25"; in stdenv.mkDerivation { name = "gnugrep-${version}"; src = fetchurl { url = "mirror://gnu/grep/grep-${version}.tar.xz"; - sha256 = "1srn321x7whlhs5ks36zlcrrmj4iahll8fxwsh1vbz3v04px54fa"; + sha256 = "0c38b67cnwchwzv4wq2gpz6smkhdxrac2hhssv8f0l04qnx867p2"; }; # Perl is needed for testing -- cgit 1.4.1 From 42f46936bbc83438011fa0d96013f92fd7fec6c4 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Fri, 29 Apr 2016 03:29:30 +0000 Subject: libarchive: add propagatedBuildInputs for attr and acl to appease pkgconfig dependencies --- pkgs/development/libraries/libarchive/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix index 467dd87f43e94..55ff770f4bd97 100644 --- a/pkgs/development/libraries/libarchive/default.nix +++ b/pkgs/development/libraries/libarchive/default.nix @@ -21,6 +21,9 @@ stdenv.mkDerivation rec { buildInputs = [ sharutils libxml2 zlib bzip2 openssl xz lzo ] ++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]; + # Without this, pkgconfig-based dependencies are unhappy + propagatedBuildInputs = stdenv.lib.optionals stdenv.isLinux [ attr acl ]; + preBuild = if stdenv.isCygwin then '' echo "#include " >> config.h '' else null; -- cgit 1.4.1 From a8bc5b67f8caf82585932eab14cb99fcbc4d595b Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Fri, 29 Apr 2016 15:26:20 +0900 Subject: php: add default php.ini --- nixos/modules/rename.nix | 1 + .../services/web-servers/apache-httpd/default.nix | 2 +- nixos/modules/services/web-servers/phpfpm.nix | 21 ++++++++++++++++----- pkgs/development/interpreters/php/default.nix | 6 ++---- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 6b02446d53b48..5c4793624e027 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -123,6 +123,7 @@ with lib; (mkRemovedOptionModule [ "services" "printing" "cupsFilesConf" ]) (mkRemovedOptionModule [ "services" "printing" "cupsdConf" ]) (mkRemovedOptionModule [ "services" "xserver" "startGnuPGAgent" ]) + (mkRemovedOptionModule [ "services" "phpfpm" "phpIni" ]) ]; } diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index 7953729c00cd8..c23897192b4c6 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -406,7 +406,7 @@ let ([ mainCfg.phpOptions ] ++ (map (svc: svc.phpOptions) allSubservices)); } '' - cat ${php}/etc/php-recommended.ini > $out + cat ${php}/etc/php.ini > $out echo "$options" >> $out ''; diff --git a/nixos/modules/services/web-servers/phpfpm.nix b/nixos/modules/services/web-servers/phpfpm.nix index 6a60000ce19e6..2658d7117e37d 100644 --- a/nixos/modules/services/web-servers/phpfpm.nix +++ b/nixos/modules/services/web-servers/phpfpm.nix @@ -19,6 +19,12 @@ let ${concatStringsSep "\n" (mapAttrsToList (n: v: "[${n}]\n${v}") cfg.poolConfigs)} ''; + phpIni = pkgs.writeText "php.ini" '' + ${readFile "${cfg.phpPackage}/etc/php.ini"} + + ${cfg.phpOptions} + ''; + in { options = { @@ -44,10 +50,15 @@ in { ''; }; - phpIni = mkOption { - type = types.path; - default = "${cfg.phpPackage}/etc/php-recommended.ini"; - description = "php.ini file to use."; + phpOptions = mkOption { + type = types.lines; + default = ""; + example = + '' + date.timezone = "CET" + ''; + description = + "Options appended to the PHP configuration file php.ini."; }; poolConfigs = mkOption { @@ -84,7 +95,7 @@ in { mkdir -p "${stateDir}" ''; serviceConfig = { - ExecStart = "${cfg.phpPackage}/sbin/php-fpm -y ${cfgFile} -c ${cfg.phpIni}"; + ExecStart = "${cfg.phpPackage}/bin/php-fpm -y ${cfgFile} -c ${phpIni}"; PIDFile = pidFile; }; }; diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index a618fd85d719e..d59273a18c3e4 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -265,14 +265,12 @@ let --replace '@PHP_LDFLAGS@' "" done - iniFile=$out/etc/php-recommended.ini [[ -z "$libxml2" ]] || export PATH=$PATH:$libxml2/bin ./configure --with-config-file-scan-dir=/etc --with-config-file-path=$out/etc --prefix=$out $configureFlags ''; - installPhase = '' - unset installPhase; installPhase; - cp php.ini-production $iniFile + postInstall = '' + cp php.ini-production $out/etc/php.ini ''; src = fetchurl { -- cgit 1.4.1 From 36d50d2e6c2b2d6829763ef52e75b47ac32b372d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 30 Apr 2016 05:01:55 +0300 Subject: nodejs-0_10: fix build --- pkgs/development/web/nodejs/v0_10.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/web/nodejs/v0_10.nix b/pkgs/development/web/nodejs/v0_10.nix index 3196153b60478..9845aa3bf8c80 100644 --- a/pkgs/development/web/nodejs/v0_10.nix +++ b/pkgs/development/web/nodejs/v0_10.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares +{ stdenv, lib, fetchurl, openssl, python, zlib, v8, utillinux, http-parser, c-ares , pkgconfig, runCommand, which, libtool # apple frameworks @@ -20,10 +20,10 @@ let }) // ({ cares = c-ares; }); - sharedConfigureFlags = name: [ + sharedConfigureFlags = name: let drv = builtins.getAttr name deps; in [ "--shared-${name}" - "--shared-${name}-includes=${builtins.getAttr name deps}/include" - "--shared-${name}-libpath=${builtins.getAttr name deps}/lib" + "--shared-${name}-includes=${lib.getDev drv}/include" + "--shared-${name}-libpath=${lib.getLib drv}/lib" ]; inherit (stdenv.lib) concatMap optional optionals maintainers licenses platforms; -- cgit 1.4.1 From 7da27100fe036cfa726d4081edabdb770f653b2f Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Sat, 30 Apr 2016 19:12:32 +0200 Subject: faust2lv2gui: newest faust can create gui for lv2 --- pkgs/applications/audio/faust/faust1git.nix | 210 +++++++++++++++++++++++++ pkgs/applications/audio/faust/faust2lv2gui.nix | 14 ++ pkgs/top-level/all-packages.nix | 18 ++- 3 files changed, 235 insertions(+), 7 deletions(-) create mode 100644 pkgs/applications/audio/faust/faust1git.nix create mode 100644 pkgs/applications/audio/faust/faust2lv2gui.nix diff --git a/pkgs/applications/audio/faust/faust1git.nix b/pkgs/applications/audio/faust/faust1git.nix new file mode 100644 index 0000000000000..5b769aa621e82 --- /dev/null +++ b/pkgs/applications/audio/faust/faust1git.nix @@ -0,0 +1,210 @@ +{ stdenv +, coreutils +, fetchgit +, makeWrapper +, pkgconfig +}: + +with stdenv.lib.strings; + +let + + version = "2016-04-27"; + + src = fetchgit { + url = "git://git.code.sf.net/p/faudiostream/code"; + rev = "931fca3e649f99ef09025d37bd6a7dc70a03e6f6"; + sha256 = "05yam8jfdnziysvpxa5w118k5bbl103vamyqgka6vyhjjizp1nx7"; + }; + + meta = with stdenv.lib; { + homepage = http://faust.grame.fr/; + downloadPage = http://sourceforge.net/projects/faudiostream/files/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ magnetophon pmahoney ]; + }; + + faust = stdenv.mkDerivation { + + name = "faust-${version}"; + + inherit src; + + buildInputs = [ makeWrapper ]; + + passthru = { + inherit wrap wrapWithBuildEnv; + }; + + preConfigure = '' + makeFlags="$makeFlags prefix=$out" + + # The faust makefiles use 'system ?= $(shell uname -s)' but nix + # defines 'system' env var, so undefine that so faust detects the + # correct system. + unset system + ''; + + # Remove most faust2appl scripts since they won't run properly + # without additional paths setup. See faust.wrap, + # faust.wrapWithBuildEnv. + postInstall = '' + # syntax error when eval'd directly + pattern="faust2!(svg)" + (shopt -s extglob; rm "$out"/bin/$pattern) + ''; + + postFixup = '' + # Set faustpath explicitly. + substituteInPlace "$out"/bin/faustpath \ + --replace "/usr/local /usr /opt /opt/local" "$out" + + # The 'faustoptflags' is 'source'd into other faust scripts and + # not used as an executable, so patch 'uname' usage directly + # rather than use makeWrapper. + substituteInPlace "$out"/bin/faustoptflags \ + --replace uname "${coreutils}/bin/uname" + + # wrapper for scripts that don't need faust.wrap* + for script in "$out"/bin/faust2*; do + wrapProgram "$script" \ + --prefix PATH : "$out"/bin + done + ''; + + meta = meta // { + description = "A functional programming language for realtime audio signal processing"; + longDescription = '' + FAUST (Functional Audio Stream) is a functional programming + language specifically designed for real-time signal processing + and synthesis. FAUST targets high-performance signal processing + applications and audio plug-ins for a variety of platforms and + standards. + The Faust compiler translates DSP specifications into very + efficient C++ code. Thanks to the notion of architecture, + FAUST programs can be easily deployed on a large variety of + audio platforms and plugin formats (jack, alsa, ladspa, maxmsp, + puredata, csound, supercollider, pure, vst, coreaudio) without + any change to the FAUST code. + + This package has just the compiler, libraries, and headers. + Install faust2* for specific faust2appl scripts. + ''; + }; + + }; + + # Default values for faust2appl. + faust2ApplBase = + { baseName + , dir ? "tools/faust2appls" + , scripts ? [ baseName ] + , ... + }@args: + + args // { + name = "${baseName}-${version}"; + + inherit src; + + configurePhase = ":"; + + buildPhase = ":"; + + installPhase = '' + runHook preInstall + + mkdir -p "$out/bin" + for script in ${concatStringsSep " " scripts}; do + cp "${dir}/$script" "$out/bin/" + done + + runHook postInstall + ''; + + postInstall = '' + # For the faust2appl script, change 'faustpath' and + # 'faustoptflags' to absolute paths. + for script in "$out"/bin/*; do + substituteInPlace "$script" \ + --replace ". faustpath" ". '${faust}/bin/faustpath'" \ + --replace ". faustoptflags" ". '${faust}/bin/faustoptflags'" + done + ''; + + meta = meta // { + description = "The ${baseName} script, part of faust functional programming language for realtime audio signal processing"; + }; + }; + + # Some 'faust2appl' scripts, such as faust2alsa, run faust to + # generate cpp code, then invoke the c++ compiler to build the code. + # This builder wraps these scripts in parts of the stdenv such that + # when the scripts are called outside any nix build, they behave as + # if they were running inside a nix build in terms of compilers and + # paths being configured (e.g. rpath is set so that compiled + # binaries link to the libs inside the nix store) + # + # The function takes two main args: the appl name (e.g. + # 'faust2alsa') and an optional list of propagatedBuildInputs. It + # returns a derivation that contains only the bin/${appl} script, + # wrapped up so that it will run as if it was inside a nix build + # with those build inputs. + # + # The build input 'faust' is automatically added to the + # propagatedBuildInputs. + wrapWithBuildEnv = + { baseName + , propagatedBuildInputs ? [ ] + , ... + }@args: + + stdenv.mkDerivation ((faust2ApplBase args) // { + + buildInputs = [ makeWrapper pkgconfig ]; + + propagatedBuildInputs = [ faust ] ++ propagatedBuildInputs; + + postFixup = '' + + # export parts of the build environment + for script in "$out"/bin/*; do + wrapProgram "$script" \ + --set FAUSTLIB "${faust}/lib/faust" \ + --set FAUSTINC "${faust}/include/faust" \ + --prefix PATH : "$PATH" \ + --prefix PKG_CONFIG_PATH : "$PKG_CONFIG_PATH" \ + --set NIX_CFLAGS_COMPILE "\"$NIX_CFLAGS_COMPILE\"" \ + --set NIX_LDFLAGS "\"$NIX_LDFLAGS\"" + done + ''; + }); + + # Builder for 'faust2appl' scripts, such as faust2firefox that + # simply need to be wrapped with some dependencies on PATH. + # + # The build input 'faust' is automatically added to the PATH. + wrap = + { baseName + , runtimeInputs ? [ ] + , ... + }@args: + + let + + runtimePath = concatStringsSep ":" (map (p: "${p}/bin") ([ faust ] ++ runtimeInputs)); + + in stdenv.mkDerivation ((faust2ApplBase args) // { + + buildInputs = [ makeWrapper ]; + + postFixup = '' + for script in "$out"/bin/*; do + wrapProgram "$script" --prefix PATH : "${runtimePath}" + done + ''; + + }); + +in faust diff --git a/pkgs/applications/audio/faust/faust2lv2gui.nix b/pkgs/applications/audio/faust/faust2lv2gui.nix new file mode 100644 index 0000000000000..af20bb1d74505 --- /dev/null +++ b/pkgs/applications/audio/faust/faust2lv2gui.nix @@ -0,0 +1,14 @@ +{ boost +, faust1git +, lv2 +, qt4 + +}: + +faust1git.wrapWithBuildEnv { + + baseName = "faust2lv2"; + + propagatedBuildInputs = [ boost lv2 qt4 ]; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4d26cf8d62f94..1bd108ef9320f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6468,13 +6468,13 @@ in beecrypt = callPackage ../development/libraries/beecrypt { }; beignet = callPackage ../development/libraries/beignet { - inherit (llvmPackages) clang-unwrapped; - inherit (xlibs) libX11; - inherit (xorg) libXfixes libpthreadstubs libXdmcp libXdamage libXxf86vm; - inherit (python3Packages) python; - inherit (purePackages) gl; - }; - + inherit (llvmPackages) clang-unwrapped; + inherit (xlibs) libX11; + inherit (xorg) libXfixes libpthreadstubs libXdmcp libXdamage libXxf86vm; + inherit (python3Packages) python; + inherit (purePackages) gl; + }; + belle-sip = callPackage ../development/libraries/belle-sip { }; bobcat = callPackage ../development/libraries/bobcat { }; @@ -16206,6 +16206,8 @@ in faust1 = callPackage ../applications/audio/faust/faust1.nix { }; + faust1git = callPackage ../applications/audio/faust/faust1git.nix { }; + faust2 = callPackage ../applications/audio/faust/faust2.nix { llvm = llvm_37; }; @@ -16224,6 +16226,8 @@ in faust2lv2 = callPackage ../applications/audio/faust/faust2lv2.nix { }; + faust2lv2gui = callPackage ../applications/audio/faust/faust2lv2gui.nix { }; + fceux = callPackage ../misc/emulators/fceux { }; foldingathome = callPackage ../misc/foldingathome { }; -- cgit 1.4.1 From 2875293615adabba44dac3a222e3d483c3f9e6f7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 25 Apr 2016 20:18:56 -0500 Subject: nixos/networkmanager: fix syntax error --- nixos/modules/services/networking/networkmanager.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index b83b8b91c6783..e9eea6a2cae19 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -114,10 +114,12 @@ in { # Ugly hack for using the correct gnome3 packageSet basePackages = mkOption { type = types.attrsOf types.package; - default = { inherit networkmanager modemmanager wpa_supplicant + default = { inherit modemmanager wpa_supplicant networkmanager_openvpn networkmanager_vpnc networkmanager_openconnect - networkmanager_pptp networkmanager_l2tp; }; + networkmanager_pptp networkmanager_l2tp; + networkmanager = networkmanager.out; + }; internal = true; }; -- cgit 1.4.1 From f67be473334dbc463c8cb6dd9b6579da720357e2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:19:25 -0500 Subject: ORBit2: multiple outputs --- pkgs/desktops/gnome-2/platform/ORBit2/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix index 754a3ce68f651..27233f4993cd9 100644 --- a/pkgs/desktops/gnome-2/platform/ORBit2/default.nix +++ b/pkgs/desktops/gnome-2/platform/ORBit2/default.nix @@ -9,16 +9,22 @@ stdenv.mkDerivation rec { sha256 = "0l3mhpyym9m5iz09fz0rgiqxl2ym6kpkwpsp1xrr4aa80nlh1jam"; }; + nativeBuildInputs = [ pkgconfig ]; + propagatedBuildInputs = [ glib libIDL ] ++ libintlOrEmpty; + + outputs = [ "dev" "out" ]; + preBuild = '' sed 's/-DG_DISABLE_DEPRECATED//' -i linc2/src/Makefile ''; - nativeBuildInputs = [ pkgconfig ]; - propagatedBuildInputs = [ glib libIDL ] ++ libintlOrEmpty; + preFixup = '' + moveToOutput "bin/orbit2-config" "$dev" + ''; meta = with stdenv.lib; { homepage = https://projects.gnome.org/ORBit2/; - description = "A a CORBA 2.4-compliant Object Request Broker"; + description = "A CORBA 2.4-compliant Object Request Broker"; platforms = platforms.unix; maintainers = with maintainers; [ lovek323 ]; -- cgit 1.4.1 From 97d9368471542388dd761a1a4654c52cd7ddbea7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:20:32 -0500 Subject: qmakeHook: move libtool archives and qmake project files to $dev/lib --- pkgs/development/libraries/qt-5/5.5/default.nix | 1 - pkgs/development/libraries/qt-5/5.5/qmake-hook.sh | 11 +++++++++++ pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 13 +++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 034e25662ea18..9cfc052e730e1 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -45,7 +45,6 @@ let nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig self.qmakeHook ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; - dontFixLibtool = args.dontFixLibtool or true; outputs = args.outputs or [ "dev" "out" ]; setOutputFlags = args.setOutputFlags or false; diff --git a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh index f059c19e03bb7..aa20779f4ec05 100644 --- a/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qmake-hook.sh @@ -53,6 +53,17 @@ _qtMultioutModuleDevs() { # The destination directory must exist or moveToOutput will do nothing mkdir -p "${!outputDev}/share" moveToOutput "share/doc" "${!outputDev}" + + # Move libtool archives and qmake project files to $dev/lib + if [ "z${!outputLib}" != "z${!outputDev}" ]; then + pushd "${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' -print0 | \ + while read -r -d $'\0' file; do + mkdir -p "${!outputDev}/$(dirname "$file")" + mv "${!outputLib}/$file" "${!outputDev}/$file" + done + popd + fi } qmakeConfigurePhase() { diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 7d68116d71685..f8dd82c88226b 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -235,6 +235,19 @@ stdenv.mkDerivation { # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + preFixup = '' + # Move libtool archives and qmake projects + if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then + pushd "''${!outputLib}" + find lib -name '*.a' -o -name '*.la' -o -name '*.prl' | \ + while read -r file; do + mkdir -p "''${!outputDev}/$(dirname "$file")" + mv "''${!outputLib}/$file" "''${!outputDev}/$file" + done + popd + fi + ''; + postFixup = '' # Don't retain build-time dependencies like gdb and ruby. -- cgit 1.4.1 From 008b3d5d84ad300095eeee0b84ef1b5adb04c395 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:21:10 -0500 Subject: qt55.qtbase: move moveToOutput hooks --- .../libraries/qt-5/5.5/qtbase/default.nix | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index f8dd82c88226b..f2071fa6f8fc1 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -111,19 +111,6 @@ stdenv.mkDerivation { export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - _multioutQtDevs() { - # We cannot simply set these paths in configureFlags because libQtCore retains - # references to the paths it was built with. - moveToOutput "bin" "$dev" - moveToOutput "include" "$dev" - moveToOutput "mkspecs" "$dev" - - # The destination directory must exist or moveToOutput will do nothing - mkdir -p "$dev/share" - moveToOutput "share/doc" "$dev" - } - preFixupHooks+=(_multioutQtDevs) - configureFlags+="\ -plugindir $out/lib/qt5/plugins \ -importdir $out/lib/qt5/imports \ @@ -236,6 +223,16 @@ stdenv.mkDerivation { NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; preFixup = '' + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "$dev" + moveToOutput "include" "$dev" + moveToOutput "mkspecs" "$dev" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "$dev/share" + moveToOutput "share/doc" "$dev" + # Move libtool archives and qmake projects if [ "z''${!outputLib}" != "z''${!outputDev}" ]; then pushd "''${!outputLib}" -- cgit 1.4.1 From 3f6a2b944101a22db3325d1c676978831d2ddc9c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:21:41 -0500 Subject: qt55.qtbase: build QGtkStyle by default --- .../libraries/qt-5/5.5/qtbase/default.nix | 37 ++++++++++++++-------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index f2071fa6f8fc1..2cd129acab1d0 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -8,7 +8,7 @@ , zlib, libjpeg, libpng, libtiff, sqlite, icu , coreutils, bison, flex, gdb, gperf, lndir, ruby -, python, perl, pkgconfig +, patchelf, perl, pkgconfig, python # optional dependencies , cups ? null @@ -19,7 +19,7 @@ , buildExamples ? false , buildTests ? false , developerBuild ? false -, gtkStyle ? false, libgnomeui, GConf, gnome_vfs, gtk +, gtkStyle ? true, libgnomeui, GConf, gnome_vfs, gtk , decryptSslTraffic ? false }: @@ -27,6 +27,9 @@ let inherit (srcs.qt5) version; system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; + # Search path for Gtk plugin + gtkLibPath = lib.makeLibraryPath [ gtk.out gnome_vfs.out libgnomeui.out GConf.out ]; + dontInvalidateBacking = fetchurl { url = "https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=0f68f8920573cdce1729a285a92ac8582df32841;hp=24c50f8dcf7fa61ac3c3d4d6295c259a104a2b8c"; name = "qtbug-48321-dont-invalidate-backing-store.patch"; @@ -43,7 +46,7 @@ stdenv.mkDerivation { sourceRoot = "qt-everywhere-opensource-src-${version}"; - outputs = [ "dev" "out" ]; + outputs = [ "dev" "out" "gtk" ]; postUnpack = '' mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase @@ -51,7 +54,6 @@ stdenv.mkDerivation { patches = copyPathsToStore (lib.readPathsFromFile ./. ./series) - ++ lib.optional gtkStyle ./dlopen-gtkstyle.patch ++ lib.optional decryptSslTraffic ./decrypt-ssl-traffic.patch ++ lib.optional mesaSupported [ ./dlopen-gl.patch ./mkspecs-libgl.patch ]; @@ -89,14 +91,6 @@ stdenv.mkDerivation { qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ --replace "@libX11@" "${libX11.out}" '' - + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk.out}" - substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk.out}" \ - --replace "@gnome_vfs@" "${gnome_vfs.out}" \ - --replace "@libgnomeui@" "${libgnomeui.out}" \ - --replace "@gconf@" "${GConf.out}" - '' + lib.optionalString mesaSupported '' substituteInPlace \ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ @@ -106,6 +100,7 @@ stdenv.mkDerivation { --replace "@mesa_inc@" "${mesa.dev}" ''; + setOutputFlags = false; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" @@ -217,7 +212,7 @@ stdenv.mkDerivation { ++ lib.optional (postgresql != null) postgresql ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; - nativeBuildInputs = [ fixQtModuleCMakeConfig lndir python perl pkgconfig ]; + nativeBuildInputs = [ fixQtModuleCMakeConfig lndir patchelf perl pkgconfig python ]; # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; @@ -243,6 +238,22 @@ stdenv.mkDerivation { done popd fi + + # Move the QGtkStyle plugin to the gtk output + mkdir -p "$gtk/lib/qt5/plugins/platformthemes" + mv "$out/lib/qt5/plugins/platformthemes/libqgtk2.so" "$gtk/lib/qt5/plugins/platformthemes" + rm "$out/lib/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake" + + # Set RPATH for QGtkStyle plugin + qgtk2="$gtk/lib/qt5/plugins/platformthemes/libqgtk2.so" + qgtk2_RPATH="$(patchelf --print-rpath "$qgtk2")" + qgtk2_RPATH="$qgtk2_RPATH''${qgtk2_RPATH:+:}${gtkLibPath}" + patchelf "$qgtk2" \ + --add-needed libgtk-x11-2.0.so \ + --add-needed libgnomeui-2.so \ + --add-needed libgnomevfs-2.so \ + --add-needed libgconf-2.so \ + --set-rpath "$qgtk2_RPATH" ''; postFixup = -- cgit 1.4.1 From a15fa4533c929375ec226fe0b6213099af063ebe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:04:26 -0500 Subject: GConf: multiple outputs --- pkgs/desktops/gnome-2/platform/GConf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-2/platform/GConf/default.nix b/pkgs/desktops/gnome-2/platform/GConf/default.nix index db51a5f8962ae..30f92e4e054e2 100644 --- a/pkgs/desktops/gnome-2/platform/GConf/default.nix +++ b/pkgs/desktops/gnome-2/platform/GConf/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { sha256 = "09ch709cb9fniwc4221xgkq0jf0x0lxs814sqig8p2dcll0llvzk"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "doc" ]; buildInputs = [ ORBit2 dbus_libs dbus_glib libxml2 ] # polkit requires pam, which requires shadow.h, which is not available on -- cgit 1.4.1 From 1b57ef0baa685770f09d9204b064c63526caa3b0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:04:37 -0500 Subject: gnome-vfs: multiple outputs --- pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix b/pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix index 6922339306038..340c14e914f60 100644 --- a/pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix +++ b/pkgs/desktops/gnome-2/platform/gnome-vfs/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "1ajg8jb8k3snxc7rrgczlh8daxkjidmcv3zr9w809sq4p2sn9pk2"; }; + outputs = [ "dev" "out" ]; + buildInputs = [ pkgconfig libxml2 bzip2 openssl samba dbus_glib fam cdparanoia intltool gnome_mime_data avahi acl -- cgit 1.4.1 From c9e929bbbd602381f3b49ac3cfa9135ac0a97030 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:04:48 -0500 Subject: libbonobo: multiple outputs --- pkgs/desktops/gnome-2/platform/libbonobo/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/desktops/gnome-2/platform/libbonobo/default.nix b/pkgs/desktops/gnome-2/platform/libbonobo/default.nix index add013e64cdbb..af1960af36ac3 100644 --- a/pkgs/desktops/gnome-2/platform/libbonobo/default.nix +++ b/pkgs/desktops/gnome-2/platform/libbonobo/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "0swp4kk6x7hy1rvd1f9jba31lvfc6qvafkvbpg9h0r34fzrd8q4i"; }; + outputs = [ "dev" "out" ]; + preConfigure = # still using stuff deprecated in new glib versions "sed 's/-DG_DISABLE_DEPRECATED//g' -i configure activation-server/Makefile.in"; -- cgit 1.4.1 From ce367a7a9be516f0a5f2454e096fbc24a453906c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:05:00 -0500 Subject: libglade: multiple outputs --- pkgs/desktops/gnome-2/platform/libglade/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-2/platform/libglade/default.nix b/pkgs/desktops/gnome-2/platform/libglade/default.nix index 5e5bae4d18137..ce1da95762ff9 100644 --- a/pkgs/desktops/gnome-2/platform/libglade/default.nix +++ b/pkgs/desktops/gnome-2/platform/libglade/default.nix @@ -2,12 +2,14 @@ stdenv.mkDerivation { name = "libglade-2.6.4"; - + src = fetchurl { url = mirror://gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2; sha256 = "1v2x2s04jry4gpabws92i0wq2ghd47yr5n9nhgnkd7c38xv1wdk4"; }; - + + outputs = [ "dev" "out" ]; + buildInputs = [ pkgconfig gtk python gettext ]; propagatedBuildInputs = [ libxml2 ]; -- cgit 1.4.1 From 79c9949d385d936a92060ebe4912a7d7e4049840 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:05:16 -0500 Subject: libgnome: multiple outputs --- pkgs/desktops/gnome-2/platform/libgnome/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/desktops/gnome-2/platform/libgnome/default.nix b/pkgs/desktops/gnome-2/platform/libgnome/default.nix index 4612e6aee6f57..d0a4d1787c6cb 100644 --- a/pkgs/desktops/gnome-2/platform/libgnome/default.nix +++ b/pkgs/desktops/gnome-2/platform/libgnome/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { sha256 = "197pnq8y0knqjhm2fg4j6hbqqm3qfzfnd0irhwxpk1b4hqb3kimj"; }; + outputs = [ "dev" "out" ]; + patches = [ ./new-glib.patch ]; nativeBuildInputs = [ pkgconfig ]; -- cgit 1.4.1 From b6bd3ea805dc231fd58fbb6112e4eda7d2b5fe1b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:05:28 -0500 Subject: libgnomecanvas: multiple outputs --- pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix b/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix index 8c12754f112bc..5b5e7af5431a5 100644 --- a/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix +++ b/pkgs/desktops/gnome-2/platform/libgnomecanvas/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0h6xvswbqspdifnyh5pm2pqq55yp3kn6yrswq7ay9z49hkh7i6w5"; }; + outputs = [ "dev" "out" ]; + buildInputs = [ libglade ]; nativeBuildInputs = [ pkgconfig intltool ]; propagatedBuildInputs = [ libart_lgpl gtk ]; -- cgit 1.4.1 From 1051cfa1811275a07d00218e75a13c939242a7f0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 20:05:42 -0500 Subject: libgnome-keyring: multiple outputs --- pkgs/development/libraries/libgnome-keyring/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/libgnome-keyring/default.nix b/pkgs/development/libraries/libgnome-keyring/default.nix index 4aadafff84418..95de491866858 100644 --- a/pkgs/development/libraries/libgnome-keyring/default.nix +++ b/pkgs/development/libraries/libgnome-keyring/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation { sha256 = "030gka96kzqg1r19b4xrmac89hf1xj1kr5p461yvbzfxh46qqf2n"; }; + outputs = [ "dev" "out" ]; + propagatedBuildInputs = [ glib dbus_libs libgcrypt ]; nativeBuildInputs = [ pkgconfig intltool ]; -- cgit 1.4.1 From 5c7783427cbf681edad43c3e8e088de08bdc59fd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 06:54:44 -0500 Subject: extra-cmake-modules: assume propagatedBuildInputs The KDE build system assumes buildInputs = propagatedBuildInputs. --- .../kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh index 193cb048949a8..49ac5d0c8b5fc 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh @@ -10,12 +10,7 @@ _ecmPropagateSharedData() { "kconf_update" \ "kservices5" \ "kservicetypes5" \ - "kxmlgui5" \ "knotifications5" \ - "icons" \ - "sounds" \ - "templates" \ - "wallpapers" \ "applications" \ "desktop-directories" \ "mime" \ @@ -26,7 +21,6 @@ _ecmPropagateSharedData() { for dir in ${sharedPaths[@]}; do if [ -d "$1/share/$dir" ]; then addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" - propagateOnce propagatedBuildInputs "$1" propagateOnce propagatedUserEnvPkgs "$1" break fi -- cgit 1.4.1 From 2272ef72995d350de47fb988ed36f31d44baf4d8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 06:55:21 -0500 Subject: kde5.plasma-workspace: propagate all buildInputs --- .../desktops/kde-5/plasma-5.6/plasma-workspace.nix | 29 +++++++++------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix index 462378aae8849..059af52e6788c 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix @@ -1,12 +1,11 @@ { plasmaPackage, lib , extra-cmake-modules, kdoctools -, baloo, kactivities, kcmutils, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime -, kjsembed, knewstuff, knotifyconfig, kpackage, krunner -, ktexteditor, ktextwidgets, kwallet, kwayland, kwin, kxmlrpcclient -, libdbusmenu, libkscreen, libSM, libXcursor, networkmanager-qt -, pam, phonon, plasma-framework, qtquick1, qtscript, qtx11extras, wayland -, libksysguard, kconfig, solid, qtquickcontrols +, baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative +, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime, kjsembed, knewstuff +, knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland +, kwin, kxmlrpcclient, libdbusmenu, libkscreen, libksysguard, libSM, libXcursor +, networkmanager-qt, pam, phonon, plasma-framework, qtquick1, qtquickcontrols +, qtscript, qtx11extras, solid, wayland }: plasmaPackage { @@ -16,17 +15,13 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit - kjsembed knewstuff knotifyconfig kpackage - ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM - libXcursor networkmanager-qt pam phonon qtscript - wayland - ]; propagatedBuildInputs = [ - baloo kactivities kdeclarative kdelibs4support kglobalaccel - kidletime krunner ktexteditor kwin libkscreen libksysguard - plasma-framework qtquick1 qtquickcontrols qtx11extras solid + baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative + kdelibs4support kdesu kdewebkit kglobalaccel kidletime kjsembed knewstuff + knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland + kwin kxmlrpcclient libdbusmenu libkscreen libksysguard libSM libXcursor + networkmanager-qt pam phonon plasma-framework qtquick1 qtquickcontrols + qtscript qtx11extras solid wayland ]; postPatch = '' -- cgit 1.4.1 From 0e660bf27f204ed82ca9ed66c5c7b711373180e4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 06:55:41 -0500 Subject: kde5.plasma-workspace: wrap Qt programs --- pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix index 059af52e6788c..b8761998faeab 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix @@ -35,4 +35,21 @@ plasmaPackage { rm "$out/lib/libexec/startplasma" rm -r "$out/share/wayland-sessions" ''; + + preFixup = '' + wrapQtProgram $out/bin/kcheckrunning + wrapQtProgram $out/bin/kcminit + wrapQtProgram $out/bin/kcminit_startup + wrapQtProgram $out/bin/kdostartupconfig5 + wrapQtProgram $out/bin/klipper + wrapQtProgram $out/bin/krunner + wrapQtProgram $out/bin/ksmserver + wrapQtProgram $out/bin/ksplashqml + wrapQtProgram $out/bin/kstartupconfig5 + wrapQtProgram $out/bin/kuiserver5 + wrapQtProgram $out/bin/plasmashell + wrapQtProgram $out/bin/plasmawindowed + wrapQtProgram $out/bin/systemmonitor + wrapQtProgram $out/bin/xembedsniproxy + ''; } -- cgit 1.4.1 From 3a948d4786dd1b2fd72eaebee4cd994eacef5da1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 06:56:44 -0500 Subject: kde5.baloo: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/baloo.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix index 38c41d9271d86..a4fdf9bb6652d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix @@ -6,11 +6,9 @@ kdeFramework { name = "baloo"; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase + kauth kconfig kcoreaddons kcrash kdbusaddons kfilemetadata ki18n kio + kidletime lmdb qtbase qtquick1 solid ]; postInstall = '' wrapQtProgram "$out/bin/baloo_file" -- cgit 1.4.1 From e5274b2fee37c622aa925e0dda4740581bce3568 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 07:05:17 -0500 Subject: kde5.kdelibs4support: propagate all buildInputs --- .../kde-5/frameworks-5.21/kdelibs4support.nix | 32 ---------------------- .../frameworks-5.21/kdelibs4support/default.nix | 17 ++++-------- 2 files changed, 6 insertions(+), 43 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix deleted file mode 100644 index e61c4bb86e7c7..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix index 843db83a99b23..1765ffa9a39f6 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix @@ -12,25 +12,20 @@ kdeFramework { name = "kdelibs4support"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; outputs = [ "dev" "out" ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); setupHook = ./setup-hook.sh; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem + kauth karchive kcompletion kconfig kconfigwidgets kcoreaddons kcrash + kdbusaddons kded kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n + kio kiconthemes kitemmodels kinit knotifications kparts kservice + ktextwidgets kunitconversion kwidgetsaddons kwindowsystem kxmlgui + networkmanager qtsvg qtx11extras xlibs.libSM ]; cmakeFlags = [ "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" "-DDocBookXML4_DTD_VERSION=4.5" ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 01e82f9256de42efe1c7e3f454323505444fe73d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 27 Apr 2016 08:46:38 -0500 Subject: kde5.kfilemetadata propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix | 13 ------------- .../kde-5/frameworks-5.21/kfilemetadata/default.nix | 10 +++++----- 2 files changed, 5 insertions(+), 18 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix deleted file mode 100644 index be99c58d55041..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attr, ebook_tools, exiv2 -, ffmpeg, karchive, ki18n, poppler, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix index 9bb4831cf8da2..c00a4c288e80c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix @@ -4,11 +4,11 @@ kdeFramework { name = "kfilemetadata"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + buildInputs = [ ]; + propagatedBuildInputs = [ + attr ebook_tools exiv2 ffmpeg karchive ki18n poppler qtbase taglib + ]; } -- cgit 1.4.1 From ff87134c912ce1aecf08646d8d39635d5f429bd0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:45:00 -0500 Subject: kde5.plasma-framework: remove patches --- pkgs/desktops/kde-5/frameworks-5.21/default.nix | 2 +- .../kde-5/frameworks-5.21/plasma-framework.nix | 25 ++++++++++++++++++++++ .../frameworks-5.21/plasma-framework/default.nix | 25 ---------------------- 3 files changed, 26 insertions(+), 26 deletions(-) create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/default.nix index e88538a78b326..f7c43f73e9f93 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/default.nix @@ -112,7 +112,7 @@ let modemmanager-qt = callPackage ./modemmanager-qt.nix {}; networkmanager-qt = callPackage ./networkmanager-qt.nix {}; oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; - plasma-framework = callPackage ./plasma-framework {}; + plasma-framework = callPackage ./plasma-framework.nix {}; solid = callPackage ./solid.nix {}; sonnet = callPackage ./sonnet.nix {}; threadweaver = callPackage ./threadweaver.nix {}; diff --git a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix new file mode 100644 index 0000000000000..d8846f7772318 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative +, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio +, knotifications, kpackage, kservice, kwindowsystem, kxmlgui +, makeQtWrapper, qtscript, qtx11extras +}: + +kdeFramework { + name = "plasma-framework"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons + kiconthemes knotifications kxmlgui qtscript + ]; + propagatedBuildInputs = [ + kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem + qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/plasmapkg2" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix deleted file mode 100644 index d8846f7772318..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} -- cgit 1.4.1 From 068bbfa22dd063eb9e2fdaa4170d0fd3a2a55322 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:46:55 -0500 Subject: kde5.bluez-qt: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix index f981b0516f720..26490167dbdbc 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix @@ -6,7 +6,7 @@ kdeFramework { name = "bluez-qt"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; + propagatedBuildInputs = [ qtdeclarative ]; preConfigure = '' substituteInPlace CMakeLists.txt \ --replace /lib/udev/rules.d "$out/lib/udev/rules.d" -- cgit 1.4.1 From 5560c4a28b36d243f5053fc33961706c148e89a7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:47:15 -0500 Subject: kde5.breeze-icons: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix index 44cc99daf261b..3524962087e6b 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix @@ -6,5 +6,5 @@ kdeFramework { name = "breeze-icons"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtsvg ]; + propagatedBuildInputs = [ qtsvg ]; } -- cgit 1.4.1 From b4a4fa4bc6c0a6c7544b2d0e5ea34b6eb5977d58 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:47:32 -0500 Subject: kde5.frameworkintegration: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix index 26987c385ad5d..ee1b188d4073d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix @@ -5,13 +5,10 @@ kdeFramework { name = "frameworkintegration"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor + propagatedBuildInputs = [ + kbookmarks kcompletion kconfig kconfigwidgets knotifications ki18n kio + kiconthemes kwidgetsaddons libXcursor qtx11extras ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From ff846b3dc168407db6932d809cadbf3c30a4e538 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:47:49 -0500 Subject: kde5.kactivities-stats: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix index c8405ce31b08a..0080c5c31649a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix @@ -5,5 +5,5 @@ kdeFramework { name = "kactivities-stats"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ boost kactivities kconfig ]; + propagatedBuildInputs = [ boost kactivities kconfig ]; } -- cgit 1.4.1 From a1d47d0f152c3af0555ce4a2c3e7250809e9a493 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:48:11 -0500 Subject: kde5.kactivities: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix index 7c01073e078d6..167c3f15bbda2 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix @@ -5,15 +5,10 @@ kdeFramework { name = "kactivities"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative + boost kcmutils kconfig kcoreaddons kdbusaddons kdeclarative kglobalaccel + ki18n kio kservice kwindowsystem kxmlgui qtdeclarative ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 634b995589d722ebd984b00c143d5ae3fd2b4635 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:48:26 -0500 Subject: kde5.kapidox: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix index 647be8f052c39..f78a5ea08a49a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix @@ -5,8 +5,6 @@ kdeFramework { name = "kapidox"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 55a6f7916421e853c7acbc2d61a0db414a69e3b0 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:48:40 -0500 Subject: kde5.karchive: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/karchive.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix index a8d9a0003c3b8..bec44a6d6874f 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix @@ -4,8 +4,6 @@ kdeFramework { name = "karchive"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 44da4d92e31e7cc341b4a9012fa696e78e7fd6f6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:48:55 -0500 Subject: kde5.kauth: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix index 1352d8c5821f5..4bdba88bc3bbd 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix @@ -6,11 +6,8 @@ kdeFramework { name = "kauth"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkit-qt ]; - propagatedBuildInputs = [ kcoreaddons ]; + propagatedBuildInputs = [ kcoreaddons polkit-qt ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 5fe38a707b9c4ecf67e35fd9aae4eefc502059df Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:49:08 -0500 Subject: kde5.kbookmarks: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix index 1a469ab4db6da..7348e591d9cba 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix @@ -10,16 +10,9 @@ kdeFramework { name = "kbookmarks"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui + propagatedBuildInputs = [ + kcodecs kconfig kconfigwidgets kcoreaddons kiconthemes kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From d7e71a3a1cf7028f1654c356c7d62b87ccfe3e7e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:49:25 -0500 Subject: kde5.kcmutils: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix index dbbb783ac6152..fdf55174548e3 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix @@ -5,13 +5,11 @@ kdeFramework { name = "kcmutils"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui + propagatedBuildInputs = [ + kconfigwidgets kcoreaddons kdeclarative ki18n kiconthemes kitemviews + kpackage kservice kxmlgui ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From db7c96221f9074b9d12585424927023748e38695 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:49:38 -0500 Subject: kde5.kcompletion: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix index e393774f16a52..8c45bed258560 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix @@ -6,9 +6,7 @@ kdeFramework { name = "kcompletion"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kconfig kwidgetsaddons ]; } -- cgit 1.4.1 From 1f27e8cfd541694e9aa66048351700aa62a21389 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:49:54 -0500 Subject: kde5.kconfigwidgets: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix index 3b3bd27cce085..1e6976113de68 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix @@ -4,15 +4,12 @@ kdeFramework { name = "kconfigwidgets"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; + propagatedBuildInputs = [ kauth kconfig kcodecs kguiaddons ki18n kwidgetsaddons ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; postInstall = '' moveToOutput "bin/preparetips5" "$dev" wrapQtProgram "$dev/bin/preparetips5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 2c0231e0b0b896bb7b999134e413a16800156032 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:50:12 -0500 Subject: kde5.kcoreaddons: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix index f3a1db7bd4841..846b187c866c2 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix @@ -5,12 +5,10 @@ kdeFramework { name = "kcoreaddons"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ shared_mime_info ]; + propagatedBuildInputs = [ shared_mime_info ]; postInstall = '' wrapQtProgram "$out/bin/desktoptojson" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From d1ec927a09c261e1250d86b4a7c99ac3554f161e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:50:26 -0500 Subject: kde5.kcrash: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix index bbab78ccb4090..133a81c60c181 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix @@ -7,10 +7,7 @@ kdeFramework { name = "kcrash"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kcoreaddons kwindowsystem qtx11extras ]; } -- cgit 1.4.1 From 99c50e45c7985bc36efe13ee3f521d00f2343c25 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:50:39 -0500 Subject: kde5.kdeclarative: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix index 74d107466cfc4..af9a009b82e5d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix @@ -6,17 +6,13 @@ kdeFramework { name = "kdeclarative"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative + epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage + kwidgetsaddons kwindowsystem qtdeclarative ]; postInstall = '' wrapQtProgram "$out/bin/kpackagelauncherqml" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From f60d19ba86be9ebc2e20051f7abfe14a54890d19 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:50:54 -0500 Subject: kde5.kded: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kded.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kded.nix b/pkgs/desktops/kde-5/frameworks-5.21/kded.nix index 47ae2d68c68e4..fd286accb9ff8 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kded.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kded.nix @@ -11,9 +11,7 @@ kdeFramework { name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; } -- cgit 1.4.1 From be1091d46cd94bfeda04ed64649d339ccc21b0c2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:51:08 -0500 Subject: kde5.kdesignerplugin: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix index cbc114ccca036..d6e03e1747297 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix @@ -18,17 +18,13 @@ kdeFramework { name = "kdesignerplugin"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui + propagatedBuildInputs = [ + kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit kiconthemes kio + kitemviews kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet ]; - propagatedBuildInputs = [ kio sonnet ]; postInstall = '' wrapQtProgram "$out/bin/kgendesignerplugin" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From e6a1d1c3d09098777d292057d382d43eff008252 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:51:24 -0500 Subject: kde5.kdesu: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix index 364fbd6a720bd..fcccea9161f19 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix @@ -4,10 +4,7 @@ kdeFramework { name = "kdesu"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kcoreaddons ki18n kpty kservice ]; } -- cgit 1.4.1 From 1acadc22559226a95057dcc4d53facb03661d346 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:51:39 -0500 Subject: kde5.kdewebkit: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix index d361313d1d494..3c0e4ba3f5623 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdewebkit.nix @@ -4,10 +4,9 @@ kdeFramework { name = "kdewebkit"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ + kconfig kcoreaddons ki18n kio kjobwidgets kparts kservice kwallet qtwebkit + ]; } -- cgit 1.4.1 From f8c51488257860da16d549a701014a343aa12ce4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:51:54 -0500 Subject: kde5.kdnssd: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix index f00432b0c9ce4..8fda4e63e3a6d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix @@ -5,9 +5,7 @@ kdeFramework { name = "kdnssd"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ avahi ]; } -- cgit 1.4.1 From e7f42467e347bd95eb1236b252d7d54e59e9a86c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:52:09 -0500 Subject: kde5.kdoctools: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix index f67c19f42395a..0ed249da9a4cf 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix @@ -4,16 +4,13 @@ kdeFramework { name = "kdoctools"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; + propagatedBuildInputs = [ karchive ki18n ]; propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; cmakeFlags = [ "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" ]; patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 9f9ab4aa25f57d02563b4ed0494a036a3284bf8a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:52:22 -0500 Subject: kde5.kemoticons: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix index d165f84e3a2dd..1e31277172d72 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix @@ -8,10 +8,7 @@ kdeFramework { name = "kemoticons"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ karchive kconfig kcoreaddons kservice ]; } -- cgit 1.4.1 From 0e94f263822cddbee204f0e920c5085ab5a59956 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:52:39 -0500 Subject: kde5.kfilemetadata: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix index c00a4c288e80c..bc7349e7453f4 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix @@ -7,7 +7,6 @@ kdeFramework { meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ ]; propagatedBuildInputs = [ attr ebook_tools exiv2 ffmpeg karchive ki18n poppler qtbase taglib ]; -- cgit 1.4.1 From f3bf03250e7abaedae6c6f94fd77d9d64e3520cf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:52:59 -0500 Subject: kde5.kglobalaccel: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix index c535b3590a388..79db990f191c0 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix @@ -11,13 +11,12 @@ kdeFramework { name = "kglobalaccel"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + propagatedBuildInputs = [ + kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras + ]; postInstall = '' wrapQtProgram "$out/bin/kglobalaccel5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 7689b8317e3d7eb7dfda2e983cd5ccb866c7457a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:53:14 -0500 Subject: kde5.kguiaddons: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix index bc4e9ab11843a..6ebfd1104f700 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix @@ -5,9 +5,7 @@ kdeFramework { name = "kguiaddons"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ qtx11extras ]; } -- cgit 1.4.1 From 670123464bb28404ebe1ec4ceac5513faa4bc4c6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:53:29 -0500 Subject: kde5.khtml: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/khtml.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix index d40df466ebbdc..99f6fe31e0d7c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix @@ -6,16 +6,11 @@ kdeFramework { name = "khtml"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet + giflib karchive kcodecs kglobalaccel ki18n kiconthemes kio kjs + knotifications kparts ktextwidgets kwallet kwidgetsaddons kwindowsystem + kxmlgui phonon qtx11extras sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From ad2671f73ca6227c81391c6e02bcb915ac7284ff Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:53:44 -0500 Subject: kde5.ki18n: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix index 268006512e7c3..2698a97fd33f9 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix @@ -8,10 +8,8 @@ kdeFramework { name = "ki18n"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative qtscript ]; + propagatedBuildInputs = [ qtdeclarative qtscript ]; propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 22300d7c59bbe3552f592593cd8cb64bbeb353cb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:53:57 -0500 Subject: kde5.kiconthemes: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix index b78b25582bebd..4e8684806365d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix @@ -5,14 +5,11 @@ kdeFramework { name = "kiconthemes"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ breeze-icons ki18n ]; + propagatedBuildInputs = [ breeze-icons kconfigwidgets ki18n kitemviews qtsvg ]; postInstall = '' wrapQtProgram "$out/bin/kiconfinder5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 6187ae6c023d0fdd6980972b053190f72b3ce7fe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:54:11 -0500 Subject: kde5.kidletime: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix index fc0865600239f..758260517e7df 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix @@ -6,10 +6,7 @@ kdeFramework { name = "kidletime"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ qtbase qtx11extras ]; } -- cgit 1.4.1 From 4986a452e617cc7b6899a88a21ebf7d5d365bc27 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:54:30 -0500 Subject: kde5.kimageformats: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix index 49d66bbcc2c64..fbc8d092f865f 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix @@ -5,9 +5,7 @@ kdeFramework { name = "kimageformats"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From c9202600fa2f76dd49b882b3f806c17fec41cd5c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:55:29 -0500 Subject: kde5.kinit: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix index 64210ca76051c..454e3977c3a87 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix @@ -3,15 +3,12 @@ , libcap_progs }: -# TODO: setuid wrapper - kdeFramework { name = "kinit"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; + propagatedBuildInputs = [ + kconfig kcrash ki18n kio kservice kwindowsystem libcap + ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 6c103125db4ea32906da3fe97c328719d1c72f5b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:55:42 -0500 Subject: kde5.kio: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix index a2131ff338505..cfa597e9cd10b 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix @@ -9,17 +9,15 @@ kdeFramework { name = "kio"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras + acl karchive kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons + kdbusaddons ki18n kiconthemes kitemviews kjobwidgets knotifications kservice + ktextwidgets kwallet kwidgetsaddons kwindowsystem kxmlgui solid qtscript + qtx11extras ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); postInstall = '' wrapQtProgram "$out/bin/kcookiejar5" wrapQtProgram "$out/bin/ktelnetservice5" @@ -27,7 +25,4 @@ kdeFramework { wrapQtProgram "$out/bin/kmailservice5" wrapQtProgram "$out/bin/protocoltojson" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 83fff10a6698367417c48a598b599a9b70e2afba Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:55:55 -0500 Subject: kde5.kitemmodels: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix index a9024d771cc33..7dff10b7fe063 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix @@ -4,8 +4,6 @@ kdeFramework { name = "kitemmodels"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From f4a5078245a1af77baa413a3d95b3ebf6a641e65 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:56:09 -0500 Subject: kde5.kitemviews: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix index 931019ce495d7..77f4b66216046 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix @@ -4,8 +4,6 @@ kdeFramework { name = "kitemviews"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 4e983f65b945d31027c98e106ee95a9bc23fbba4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:56:25 -0500 Subject: kde5.kjobwidgets: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix index 746edf12eea03..2692458b8be79 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix @@ -7,10 +7,7 @@ kdeFramework { name = "kjobwidgets"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kcoreaddons kwidgetsaddons qtx11extras ]; } -- cgit 1.4.1 From 27078990f9a07207fed1559b0be40666567e6fb8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:56:40 -0500 Subject: kde5.kjs: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kjs.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix index 768720f178c87..1a8750ea74fd7 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix @@ -6,11 +6,9 @@ kdeFramework { name = "kjs"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; postInstall = '' wrapQtProgram "$out/bin/kjs5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 7490f3662cd39f4fce0d460348fb1cfe1a06947e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:57:06 -0500 Subject: kde5.kjsembed: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix index 22eef2d47bde6..7611b8310075d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix @@ -4,14 +4,11 @@ kdeFramework { name = "kjsembed"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; + propagatedBuildInputs = [ ki18n kjs qtsvg ]; postInstall = '' wrapQtProgram "$out/bin/kjscmd5" wrapQtProgram "$out/bin/kjsconsole" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 40786c0990e9e2afbbbb5e8af16b7b5bbf23f7d3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:57:59 -0500 Subject: kde5.kmediaplayer: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix index 460458b22323a..93a6b450f762d 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix @@ -6,10 +6,7 @@ kdeFramework { name = "kmediaplayer"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kparts kxmlgui ]; } -- cgit 1.4.1 From 3cfdad0a9a103f8ea5853bb138462489f5228399 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:58:14 -0500 Subject: kde5.knewstuff: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix index 5bcd6f3014624..002418c65ad0c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix @@ -5,13 +5,10 @@ kdeFramework { name = "knewstuff"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons + propagatedBuildInputs = [ + attica karchive kcompletion kconfig kcoreaddons ki18n kiconthemes kio + kitemviews kservice ktextwidgets kwidgetsaddons kxmlgui ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 35692118cd972785c59cdee27fd087617f4e404f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:58:28 -0500 Subject: kde5.knotifications: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix index 791caa02edb77..7196832495f30 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix @@ -8,12 +8,9 @@ kdeFramework { name = "knotifications"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons libdbusmenu phonon + propagatedBuildInputs = [ + kcodecs kconfig kcoreaddons kwindowsystem libdbusmenu phonon qtx11extras ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From de47317ef2d763079c9be38eb469a83acd083bd2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:58:50 -0500 Subject: kde5.knotifyconfig: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix index dd99d2d4f1e57..0e357aecb999c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix @@ -4,10 +4,7 @@ kdeFramework { name = "knotifyconfig"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ kcompletion kconfig ki18n kio phonon ]; } -- cgit 1.4.1 From 5a4f8bb04bc34ced4a5b4cb68dfbce94e8c3331d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:59:07 -0500 Subject: kde5.kpackage: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix index aea1b0d31a0d9..874bb380d7363 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix @@ -10,14 +10,11 @@ kdeFramework { name = "kpackage"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ karchive kconfig ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; + propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); postInstall = '' wrapQtProgram "$out/bin/kpackagetool5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 6a235b3e7fa4601a862a7ff828e06e85e4335ebb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:59:22 -0500 Subject: kde5.kparts: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kparts.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix index 1c3e0b2cbc519..ad6ea2dbc3059 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix @@ -5,13 +5,10 @@ kdeFramework { name = "kparts"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kiconthemes kjobwidgets knotifications - kservice kwidgetsaddons + propagatedBuildInputs = [ + kconfig kcoreaddons ki18n kiconthemes kio kjobwidgets knotifications + kservice ktextwidgets kwidgetsaddons kxmlgui ]; - propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From aa8d2d180da69bed3ce0bf920aec78955232fe19 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:59:36 -0500 Subject: kde5.kpeople: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix index 4c3877e7efd2f..6acb5e2eed513 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix @@ -4,12 +4,9 @@ kdeFramework { name = "kpeople"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kitemviews kservice kwidgetsaddons + propagatedBuildInputs = [ + kcoreaddons ki18n kitemviews kservice kwidgetsaddons qtdeclarative ]; - propagatedBuildInputs = [ ki18n qtdeclarative ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 0d01e89a19f1ee639c06b130103ef5f9275116ae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 10:59:51 -0500 Subject: kde5.kplotting: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix index c16f51b5ac3cd..601f1778db7d9 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix @@ -4,8 +4,6 @@ kdeFramework { name = "kplotting"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 86d9ef9c0fd4bce914442ef964361a5f43b6d616 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:00:04 -0500 Subject: kde5.kpty: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kpty.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix index 2e34e6f674cee..8bdaacb85f82b 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix @@ -2,9 +2,7 @@ kdeFramework { name = "kpty"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ kcoreaddons ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 29b2d93bbf7963e3fb4f5a757e77830abc3eef18 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:00:18 -0500 Subject: kde5.kross: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kross.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kross.nix b/pkgs/desktops/kde-5/frameworks-5.21/kross.nix index 7c6f079feaa7c..0e66d95b5cce8 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kross.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kross.nix @@ -5,10 +5,10 @@ kdeFramework { name = "kross"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcompletion kcoreaddons kxmlgui ]; - propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ + kcompletion kcoreaddons ki18n kiconthemes kio kparts kwidgetsaddons kxmlgui + qtscript + ]; } -- cgit 1.4.1 From ca55273431f17277b902d0065f8a6d6928b08797 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:02:03 -0500 Subject: kde5.krunner: propagate buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/krunner.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix index 12d2b54d0eb36..f07a0c31c296a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix @@ -5,12 +5,10 @@ kdeFramework { name = "krunner"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kservice qtquick1 solid threadweaver + propagatedBuildInputs = [ + kconfig kcoreaddons ki18n kio kservice plasma-framework qtquick1 solid + threadweaver ]; - propagatedBuildInputs = [ ki18n kio plasma-framework ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From de14d6898487addbd27e593ee16cde9a7761d43c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:02:20 -0500 Subject: kde5.kservice: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix index 3a27d85b9166e..bbb4f5fae58cd 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix @@ -4,15 +4,12 @@ kdeFramework { name = "kservice"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; propagatedNativeBuildInputs = [ extra-cmake-modules ]; nativeBuildInputs = [ kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; + propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ki18n kwindowsystem ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ./0002-no-canonicalize-path.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From ce8f20ff0ae1528060ec4d55d1f5ae126476db15 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:02:33 -0500 Subject: kde5.ktexteditor: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix index b8df6a5f4c0d4..e1a5e8b2339ab 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix @@ -8,15 +8,11 @@ kdeFramework { name = "ktexteditor"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts - libgit2 - qtscript qtxmlpatterns + propagatedBuildInputs = [ + karchive kconfig kguiaddons ki18n kiconthemes kio kparts libgit2 qtscript + qtxmlpatterns sonnet ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From fd26b47be4ca265725f109834056409b8ae9217d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:02:52 -0500 Subject: kde5.ktextwidgets: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix index e332d4ff9a832..25954c603971c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix @@ -5,12 +5,10 @@ kdeFramework { name = "ktextwidgets"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice + propagatedBuildInputs = [ + kcompletion kconfig kconfigwidgets ki18n kiconthemes kservice kwindowsystem + sonnet ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 7bda979a1ac340ac2bb8aac1da33dcd3a29a1d05 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:03:05 -0500 Subject: kde5.kunitconversion: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix index 3cf0f847d83d5..c04ded722aa4a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix @@ -2,9 +2,7 @@ kdeFramework { name = "kunitconversion"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From b0cfdf77ef2907e2cb72693e702259f96e4ffae9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:03:19 -0500 Subject: kde5.kwallet: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix index 5ade5f63a8d04..3bb99df39a7d8 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix @@ -5,17 +5,14 @@ kdeFramework { name = "kwallet"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes - knotifications kservice kwidgetsaddons libgcrypt + propagatedBuildInputs = [ + kconfig kconfigwidgets kcoreaddons kdbusaddons ki18n kiconthemes + knotifications kservice kwidgetsaddons kwindowsystem libgcrypt ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; postInstall = '' wrapQtProgram "$out/bin/kwalletd5" wrapQtProgram "$out/bin/kwallet-query" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 7ab37acfce1b86742b843e03fcdc50a10c1be2cc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:03:36 -0500 Subject: kde5.kwidgetsaddons: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix index d95f44d3fecfd..7f2b35d8f7b50 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix @@ -4,8 +4,6 @@ kdeFramework { name = "kwidgetsaddons"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 48f4e043f48cb7b9d3c7417f16fc046d15456402 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:03:50 -0500 Subject: kde5.kwindowsystem: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix index 09ab1f2200de3..6acab52d1353a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix @@ -5,9 +5,7 @@ kdeFramework { name = "kwindowsystem"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + propagatedBuildInputs = [ qtx11extras ]; } -- cgit 1.4.1 From b8b755a869cf351f23923c9aa2a757b035200040 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:04:22 -0500 Subject: kde5.kxmlgui: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix index f081d5f9170e3..ea800bf58ae0e 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix @@ -5,14 +5,10 @@ kdeFramework { name = "kxmlgui"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kiconthemes kitemviews ktextwidgets - ]; propagatedBuildInputs = [ - kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet + attica kconfig kconfigwidgets kglobalaccel ki18n kiconthemes kitemviews + ktextwidgets kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 02f34bbcbc4062a58ed917a76668ad67af70b0b8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:04:34 -0500 Subject: kde5.kxmlrpcclient: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix index 20a300b68bc87..f20f4a2239458 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix @@ -2,9 +2,7 @@ kdeFramework { name = "kxmlrpcclient"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From a630b4ec5759da71539cc4ce221da3707ce4e7ec Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:04:47 -0500 Subject: kde5.modemmanager-qt: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix index 7d7f769d6a9be..e03254a71edda 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix @@ -5,9 +5,7 @@ kdeFramework { name = "modemmanager-qt"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From fbd7c269d13ea8381f71cb4952f235978e7be13c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:05:02 -0500 Subject: kde5.networkmanager-qt: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix index 333378bd14316..0515509a77c54 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix @@ -5,9 +5,7 @@ kdeFramework { name = "networkmanager-qt"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From c79a6ae2ac49b10422aff8c3819bed1c210cbfd7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:05:16 -0500 Subject: kde5.oxygen-icons5: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix index ee350f8e15367..0e51989843802 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix @@ -5,9 +5,9 @@ kdeFramework { name = "oxygen-icons5"; - nativeBuildInputs = [ extra-cmake-modules ]; meta = { license = lib.licenses.lgpl3Plus; maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ extra-cmake-modules ]; } -- cgit 1.4.1 From 5698bb9c735aa454915b3bd9ca1932edee5d0c21 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:05:30 -0500 Subject: kde5.plasma-framework: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix index d8846f7772318..2a8762c814f35 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix @@ -7,19 +7,14 @@ kdeFramework { name = "plasma-framework"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras + kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons + kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications + kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras ]; postInstall = '' wrapQtProgram "$out/bin/plasmapkg2" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From e5eada7ab815978badc46c2b51574d96c6196a4a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:05:44 -0500 Subject: kde5.solid: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/solid.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/solid.nix b/pkgs/desktops/kde-5/frameworks-5.21/solid.nix index afd125e3c5973..f1db5c35c10ac 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/solid.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/solid.nix @@ -6,12 +6,10 @@ kdeFramework { name = "solid"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; + propagatedBuildInputs = [ qtdeclarative ]; postInstall = '' wrapQtProgram "$out/bin/solid-hardware5" ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From c78bae87ce27cb6fc1c4d20d7395962fc4dec9ca Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:05:56 -0500 Subject: kde5.sonnet: propagate all buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix index 943fe04a1c92c..28c24302abc41 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix @@ -5,9 +5,7 @@ kdeFramework { name = "sonnet"; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 6d01760dd4739829bd7bf4a2ae3bb79a147200c8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:06:08 -0500 Subject: kde5.threadweaver: propagate buildInputs --- pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix index 52817921cc723..b8f2939e8b592 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix @@ -5,7 +5,5 @@ kdeFramework { name = "threadweaver"; nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; + meta = { maintainers = [ lib.maintainers.ttuegel ]; }; } -- cgit 1.4.1 From 3f753a655d22b468043fe95860d754a6b8a19f59 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:10:42 -0500 Subject: kde5.kservice: add patch to increase buffer size Fixes #15044. --- .../0001-qdiriterator-follow-symlinks.patch | 25 ---------------------- .../kservice/0002-no-canonicalize-path.patch | 25 ---------------------- .../kde-5/frameworks-5.21/kservice/default.nix | 7 ++---- .../kservice/ksycoca-buffer-size.patch | 25 ++++++++++++++++++++++ .../kservice/no-canonicalize-path.patch | 13 +++++++++++ .../kservice/qdiriterator-follow-symlinks.patch | 13 +++++++++++ .../desktops/kde-5/frameworks-5.21/kservice/series | 3 +++ 7 files changed, 56 insertions(+), 55 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 3d8397d8ee2df..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c685261195..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix index bbb4f5fae58cd..484be4087943c 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix @@ -1,4 +1,4 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcoreaddons , kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem }: @@ -8,8 +8,5 @@ kdeFramework { propagatedNativeBuildInputs = [ extra-cmake-modules ]; nativeBuildInputs = [ kdoctools ]; propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ki18n kwindowsystem ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); } diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch new file mode 100644 index 0000000000000..e65d4505ed26c --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch @@ -0,0 +1,25 @@ +Index: kservice-5.21.0/src/sycoca/ksycocautils.cpp +=================================================================== +--- kservice-5.21.0.orig/src/sycoca/ksycocautils.cpp ++++ kservice-5.21.0/src/sycoca/ksycocautils.cpp +@@ -24,9 +24,10 @@ + + void KSycocaUtilsPrivate::read(QDataStream &s, QString &str) + { ++ const qint32 bufferSize = 65528; + quint32 bytes; + s >> bytes; // read size of string +- if (bytes > 8192) { // null string or too big ++ if (bytes > bufferSize) { // null string or too big + if (bytes != 0xffffffff) { + KSycoca::flagError(); + } +@@ -35,7 +36,7 @@ void KSycocaUtilsPrivate::read(QDataStre + int bt = bytes / 2; + str.resize(bt); + QChar *ch = str.data(); +- char t[8192]; ++ char t[bufferSize]; + char *b = t; + s.readRawData(b, bytes); + while (bt--) { diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch new file mode 100644 index 0000000000000..cf98ffb9067fa --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch @@ -0,0 +1,13 @@ +Index: kservice-5.21.0/src/sycoca/vfolder_menu.cpp +=================================================================== +--- kservice-5.21.0.orig/src/sycoca/vfolder_menu.cpp ++++ kservice-5.21.0/src/sycoca/vfolder_menu.cpp +@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString & + } + + if (!relative) { +- QString resolved = QDir(dir).canonicalPath(); ++ QString resolved = QDir::cleanPath(dir); + if (!resolved.isEmpty()) { + dir = resolved; + } diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch new file mode 100644 index 0000000000000..cbe13b7095088 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch @@ -0,0 +1,13 @@ +Index: kservice-5.21.0/src/sycoca/kbuildsycoca.cpp +=================================================================== +--- kservice-5.21.0.orig/src/sycoca/kbuildsycoca.cpp ++++ kservice-5.21.0/src/sycoca/kbuildsycoca.cpp +@@ -203,7 +203,7 @@ bool KBuildSycoca::build() + QSet relFiles; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString filePath = it.next(); + Q_ASSERT(filePath.startsWith(dir)); // due to the line below... diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/series b/pkgs/desktops/kde-5/frameworks-5.21/kservice/series new file mode 100644 index 0000000000000..c1655f6860641 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/series @@ -0,0 +1,3 @@ +qdiriterator-follow-symlinks.patch +no-canonicalize-path.patch +ksycoca-buffer-size.patch -- cgit 1.4.1 From f79ace27289ac60e71c7be743602b52d21df1fae Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 11:51:08 -0500 Subject: qt55.poppler: compile with -DQT_NO_DEBUG Qt's debugging messages cause the qtbase.dev output to be retained by poppler.out. --- pkgs/development/libraries/poppler/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..bb3458d62dd43 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -29,11 +29,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty; + NIX_CFLAGS_COMPILE = [ "-DQT_NO_DEBUG" ]; + configureFlags = with lib; [ "--enable-xpdf-headers" "--enable-libcurl" "--enable-zlib" + "--enable-build-type=release" ] ++ optionals minimal [ "--disable-poppler-glib" "--disable-poppler-cpp" ] ++ optional (!utils) "--disable-utils"; -- cgit 1.4.1 From ff7c15b41dd0ebc0ea4589a7399c22b198d38bd4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:48:59 -0500 Subject: kde5.bluedevil: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix b/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix index 6596c246202f0..3bfac828084d9 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/bluedevil.nix @@ -9,12 +9,9 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules makeQtWrapper shared_mime_info ]; - buildInputs = [ - kcoreaddons kdbusaddons kded kiconthemes knotifications - kwidgetsaddons - ]; propagatedBuildInputs = [ - bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative + bluez-qt ki18n kio kwindowsystem plasma-framework qtdeclarative kcoreaddons + kdbusaddons kded kiconthemes knotifications kwidgetsaddons ]; propagatedUserEnvPkgs = [ bluez-qt ]; postInstall = '' -- cgit 1.4.1 From 3f4e8ab4677ae71917a4a5fc8fed2bdb72c39bcc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:49:41 -0500 Subject: kde5.breeze-qt5: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix index 63ade168805d4..f641b48c82bc1 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix @@ -10,11 +10,9 @@ plasmaPackage { extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons - ]; propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras + kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons ]; cmakeFlags = [ "-DUSE_Qt4=OFF" ]; postInstall = '' -- cgit 1.4.1 From 9b5161e3aaac98cf20f94484f174502b2d448afa Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:50:10 -0500 Subject: kde5.kde-cli-tools: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix b/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix index 7f19af6959ec2..d95db120dec49 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kde-cli-tools.nix @@ -6,11 +6,9 @@ plasmaPackage { name = "kde-cli-tools"; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcmutils kconfig kdesu kiconthemes - ]; propagatedBuildInputs = [ - kdelibs4support ki18n kwindowsystem qtsvg qtx11extras + kdelibs4support ki18n kwindowsystem qtsvg qtx11extras kcmutils kconfig kdesu + kiconthemes ]; postInstall = '' wrapQtProgram "$out/bin/kmimetypefinder5" -- cgit 1.4.1 From a43ef07c72e1fa36759fab0b90af7387e811390c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:50:55 -0500 Subject: kde5.kde-gtk-config: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix index ab8867520b380..f482f2a6a3f3d 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kde-gtk-config/default.nix @@ -16,11 +16,10 @@ plasmaPackage { name = "kde-gtk-config"; patches = [ ./0001-follow-symlinks.patch ]; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes + propagatedBuildInputs = [ + ki18n kio glib gtk2 gtk3 karchive kcmutils kconfigwidgets kiconthemes knewstuff ]; - propagatedBuildInputs = [ ki18n kio ]; cmakeFlags = [ "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" -- cgit 1.4.1 From b6aeb8e01119684417af4eaa90aa43af773cc2f3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:51:34 -0500 Subject: kde5.kdeplasma-addons: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix index 128cfe34d0d79..570112e448040 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix @@ -10,12 +10,9 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - buildInputs = [ - ibus kconfig kconfigwidgets kcoreaddons kcmutils - knewstuff kservice kunitconversion - ]; propagatedBuildInputs = [ kdelibs4support kio kross krunner plasma-framework plasma-workspace - qtdeclarative qtx11extras + qtdeclarative qtx11extras ibus kconfig kconfigwidgets kcoreaddons kcmutils + knewstuff kservice kunitconversion ]; } -- cgit 1.4.1 From 188ad5dbb67ad3fc5bc5b02c178276a59d22a7ad Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:52:18 -0500 Subject: kde5.khelpcenter: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix b/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix index 6ba860b9dfb26..3ded239b09b5c 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/khelpcenter.nix @@ -10,10 +10,10 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kcoreaddons kdbusaddons kinit kcmutils kservice + propagatedBuildInputs = [ + kdelibs4support khtml ki18n kconfig kcoreaddons kdbusaddons kinit kcmutils + kservice ]; - propagatedBuildInputs = [ kdelibs4support khtml ki18n ]; postInstall = '' wrapQtProgram "$out/bin/khelpcenter" ''; -- cgit 1.4.1 From e3e387f5bd4d98c6228249c790fc8f6042c5b196 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:52:42 -0500 Subject: kde5.khotkeys: propagate buildInputs --- pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix b/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix index 141320e6b3e69..1666692c928bb 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/khotkeys.nix @@ -6,11 +6,8 @@ plasmaPackage { name = "khotkeys"; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kdbusaddons kxmlgui - ]; propagatedBuildInputs = [ - kdelibs4support kglobalaccel ki18n kio plasma-framework - plasma-workspace qtx11extras + kdelibs4support kglobalaccel ki18n kio plasma-framework plasma-workspace + qtx11extras kcmutils kdbusaddons kxmlgui ]; } -- cgit 1.4.1 From a9c93158f21dbc7d49ccce5b39beed1d3aa1b342 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:53:11 -0500 Subject: kde5.kinfocenter: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix b/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix index ed717790cd0d8..c6a86fc05f637 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kinfocenter.nix @@ -12,12 +12,11 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ - kcmutils kcompletion kconfig kconfigwidgets kcoreaddons - kdbusaddons kiconthemes kpackage kservice kwidgetsaddons - kxmlgui libraw1394 pciutils solid + propagatedBuildInputs = [ + kdeclarative kdelibs4support ki18n kio kcmutils kcompletion kconfig + kconfigwidgets kcoreaddons kdbusaddons kiconthemes kpackage kservice + kwidgetsaddons kxmlgui libraw1394 pciutils solid ]; - propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio ]; postInstall = '' wrapQtProgram "$out/bin/kinfocenter" ''; -- cgit 1.4.1 From 289e0bab8e149ee972e6e2d852359371a7df3ba9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:53:43 -0500 Subject: kde5.kmenuedit: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix b/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix index 3834ca1328f89..09224a4871674 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kmenuedit.nix @@ -9,10 +9,9 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ - kxmlgui kdbusaddons kiconthemes + propagatedBuildInputs = [ + kdelibs4support ki18n kio sonnet kxmlgui kdbusaddons kiconthemes ]; - propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ]; postInstall = '' wrapQtProgram "$out/bin/kmenuedit" ''; -- cgit 1.4.1 From 21710ee0124c8a5719210dbe1bf83133cfc70b99 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:54:15 -0500 Subject: kde5.kscreenlocker: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix b/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix index 562797b546e9b..2cb3aac0f5599 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kscreenlocker.nix @@ -9,11 +9,8 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - buildInputs = [ - kcmutils kcrash kdelibs4support kglobalaccel kidletime kwayland - libXcursor pam wayland - ]; propagatedBuildInputs = [ - kdeclarative plasma-framework qtdeclarative + kdeclarative plasma-framework qtdeclarative kcmutils kcrash kdelibs4support + kglobalaccel kidletime kwayland libXcursor pam wayland ]; } -- cgit 1.4.1 From 483ed9427fa26fea6dc887c9e5af399b57254429 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:54:44 -0500 Subject: kde5.kscreen: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kscreen.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix index a521a79936281..117a39c3be32d 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kscreen.nix @@ -9,19 +9,9 @@ plasmaPackage { extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig - kconfigwidgets - kdbusaddons - kwidgetsaddons - kxmlgui - ]; propagatedBuildInputs = [ - kglobalaccel - ki18n - libkscreen - qtdeclarative - qtgraphicaleffects + kglobalaccel ki18n libkscreen qtdeclarative qtgraphicaleffects kconfig + kconfigwidgets kdbusaddons kwidgetsaddons kxmlgui ]; postInstall = '' wrapQtProgram "$out/bin/kscreen-console" -- cgit 1.4.1 From b63b3485a076c36b500c1d0f63076fe6b50d8ff1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:55:09 -0500 Subject: kde5.ksshaskpass: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix b/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix index f274512e027a1..8fe7cecd5a803 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/ksshaskpass.nix @@ -5,8 +5,7 @@ plasmaPackage { name = "ksshaskpass"; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kcoreaddons kwallet kwidgetsaddons ]; - propagatedBuildInputs = [ ki18n ]; + propagatedBuildInputs = [ kcoreaddons ki18n kwallet kwidgetsaddons ]; postInstall = '' wrapQtProgram "$out/bin/ksshaskpass" ''; -- cgit 1.4.1 From bb74e9afa59e59be069f24f4fdfff79c42f8eefe Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:55:47 -0500 Subject: kde5.ksysguard: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix b/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix index d47f9215a41ab..637d539189d5b 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix @@ -10,10 +10,10 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ + propagatedBuildInputs = [ kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard + kdelibs4support ki18n ]; - propagatedBuildInputs = [ kdelibs4support ki18n ]; postInstall = '' wrapQtProgram "$out/bin/ksysguardd" ''; -- cgit 1.4.1 From 27aca6670ced3e488977bd64f75b4803af058f91 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:56:15 -0500 Subject: kde5.kwayland: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kwayland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix b/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix index e4d6eb631f957..3c2788237fc89 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kwayland.nix @@ -8,7 +8,7 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ + propagatedBuildInputs = [ wayland ]; } -- cgit 1.4.1 From e4d3699976d58f454c488e91e2d225a03bdf510d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:56:40 -0500 Subject: kde5.kwin: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix b/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix index a09acb88aade6..8c85981de7e82 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kwin/default.nix @@ -15,15 +15,13 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ - epoxy kcompletion kcmutils kconfig kconfigwidgets kcoreaddons - kcrash kdecoration kiconthemes kidletime kinit knewstuff knotifications - kpackage kservice kwayland kwidgetsaddons kxmlgui libinput libICE - libSM qtscript udev wayland xcb-util-cursor - ]; propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kscreenlocker - kwindowsystem plasma-framework qtdeclarative qtmultimedia qtx11extras + kactivities kdeclarative kglobalaccel ki18n kio kscreenlocker kwindowsystem + plasma-framework qtdeclarative qtmultimedia qtx11extras epoxy kcompletion + kcmutils kconfig kconfigwidgets kcoreaddons kcrash kdecoration kiconthemes + kidletime kinit knewstuff knotifications kpackage kservice kwayland + kwidgetsaddons kxmlgui libinput libICE libSM qtscript udev wayland + xcb-util-cursor ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; -- cgit 1.4.1 From 0dc8b5f32c8e533d62fe686e81042694496afa89 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:57:06 -0500 Subject: kde5.kwrited: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/kwrited.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix b/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix index a6ed9d9bb2877..29498e93404dc 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kwrited.nix @@ -5,6 +5,5 @@ plasmaPackage { name = "kwrited"; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kpty knotifications kdbusaddons ]; - propagatedBuildInputs = [ ki18n ]; + propagatedBuildInputs = [ kcoreaddons ki18n kpty knotifications kdbusaddons ]; } -- cgit 1.4.1 From 56dd0c254187b07a4c548123a342ef4ccf7a5ee8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:57:28 -0500 Subject: kde5.libkscreen: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix b/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix index eddedf969b0e4..4e04fd5ed1d97 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix @@ -9,10 +9,7 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kwayland libXrandr - ]; propagatedBuildInputs = [ - qtx11extras + kwayland libXrandr qtx11extras ]; } -- cgit 1.4.1 From 5addd165de7e68d6b1fb4f5ec6fd53a2b7c85e8e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:57:53 -0500 Subject: kde5.libksysguard: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix index 9c352d76156fc..679ba61e3e293 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/libksysguard/default.nix @@ -12,12 +12,9 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kservice - kwidgetsaddons qtscript qtwebkit - ]; propagatedBuildInputs = [ - kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework - qtx11extras + kauth kconfig ki18n kiconthemes kwindowsystem plasma-framework qtx11extras + kcompletion kconfigwidgets kcoreaddons kservice kwidgetsaddons qtscript + qtwebkit ]; } -- cgit 1.4.1 From 8fb25cb4c2b2fe15a01f4d7e8429fc74e3f99154 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:58:17 -0500 Subject: kde5.milou: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/milou.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/milou.nix b/pkgs/desktops/kde-5/plasma-5.6/milou.nix index 760de2d79ab4e..43f78d9e2a97c 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/milou.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/milou.nix @@ -8,10 +8,8 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - qtscript kcoreaddons kservice - ]; propagatedBuildInputs = [ - kdeclarative ki18n krunner plasma-framework qtdeclarative + kdeclarative ki18n krunner plasma-framework qtdeclarative qtscript + kcoreaddons kservice ]; } -- cgit 1.4.1 From cfc28505b5a366e8dd0c09213553055492d35817 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:58:47 -0500 Subject: kde5.oxygen: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/oxygen.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix b/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix index 02918100408ac..5a783ca650275 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/oxygen.nix @@ -8,11 +8,10 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kcmutils kconfig kdecoration kguiaddons kwidgetsaddons - kservice kcompletion + propagatedBuildInputs = [ + kcmutils kconfig kdecoration kguiaddons kwidgetsaddons kservice kcompletion + frameworkintegration ki18n kwindowsystem qtx11extras ]; - propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ]; postInstall = '' wrapQtProgram "$out/bin/oxygen-demo5" wrapQtProgram "$out/bin/oxygen-settings5" -- cgit 1.4.1 From 747daca4079f2c4150b978ad2972fbec0fa6ab0a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:59:24 -0500 Subject: kde5.plasma-desktop: propagate all buildInputs --- .../kde-5/plasma-5.6/plasma-desktop/default.nix | 48 ++++------------------ 1 file changed, 7 insertions(+), 41 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix index 5f27efc7f24ca..3475f53e858ee 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix @@ -17,48 +17,14 @@ plasmaPackage rec { kdoctools makeQtWrapper ]; - buildInputs = [ - attica - boost - fontconfig - kcmutils - kdbusaddons - kded - kitemmodels - knewstuff - knotifications - knotifyconfig - kwallet - libcanberra_kde - libXcursor - libpulseaudio - libXft - libxkbfile - phonon - qtsvg - xf86inputevdev - xf86inputsynaptics - xkeyboard_config - xinput - ]; propagatedBuildInputs = [ - baloo - kactivities - kauth - kdeclarative - kdelibs4support - kemoticons - kglobalaccel - ki18n - kpeople - krunner - kwin - plasma-framework - plasma-workspace - qtdeclarative - qtquick1 - qtquickcontrols - qtx11extras + attica boost fontconfig kcmutils kdbusaddons kded kitemmodels knewstuff + knotifications knotifyconfig kwallet libcanberra_kde libXcursor + libpulseaudio libXft libxkbfile phonon qtsvg xf86inputevdev + xf86inputsynaptics xkeyboard_config xinput baloo kactivities kauth + kdeclarative kdelibs4support kemoticons kglobalaccel ki18n kpeople krunner + kwin plasma-framework plasma-workspace qtdeclarative qtquick1 + qtquickcontrols qtx11extras ]; patches = [ ./0001-qt-5.5-QML-import-paths.patch -- cgit 1.4.1 From 9f0feebeebce5f2cc4698d67b44b80b590c59073 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 12:59:49 -0500 Subject: kde5.plasma-mediacenter: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix index 7088f45d64e29..a1e1cf8a127e6 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-mediacenter.nix @@ -9,12 +9,8 @@ plasmaPackage rec { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kguiaddons kservice - qtdeclarative qtmultimedia taglib - ]; propagatedBuildInputs = [ - baloo kactivities kdeclarative kfilemetadata ki18n kio - plasma-framework + baloo kactivities kdeclarative kfilemetadata ki18n kio plasma-framework + kconfig kcoreaddons kguiaddons kservice qtdeclarative qtmultimedia taglib ]; } -- cgit 1.4.1 From a022895db1ba6924f174192b76489fdbae258108 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:00:16 -0500 Subject: kde5.plasma-nm: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix index 249c6d8aac942..0ea2ab49f557d 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-nm/default.nix @@ -20,15 +20,12 @@ plasmaPackage { kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes - kinit kitemviews knotifications kservice kwallet kwidgetsaddons - kxmlgui mobile_broadband_provider_info modemmanager-qt - networkmanager-qt openconnect qca-qt5 solid - ]; propagatedBuildInputs = [ kdeclarative kdelibs4support ki18n kio kwindowsystem plasma-framework - qtdeclarative + qtdeclarative kcompletion kconfigwidgets kcoreaddons kdbusaddons kiconthemes + kinit kitemviews knotifications kservice kwallet kwidgetsaddons kxmlgui + mobile_broadband_provider_info modemmanager-qt networkmanager-qt openconnect + qca-qt5 solid ]; postInstall = '' wrapQtProgram "$out/bin/kde5-nm-connection-editor" -- cgit 1.4.1 From ee5cc8f5ce8e031d81391f8ec1f2527baa856a79 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:00:41 -0500 Subject: kde5.plasma-pa: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix index ff56d1199b152..1712dab773dbd 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-pa.nix @@ -9,10 +9,8 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - buildInputs = [ - glib kconfigwidgets kcoreaddons libpulseaudio - ]; propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n plasma-framework + glib kconfigwidgets kcoreaddons libpulseaudio kdeclarative kglobalaccel + ki18n plasma-framework ]; } -- cgit 1.4.1 From 758e28728e1bd87f395838bc067a4ae111b25901 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:01:27 -0500 Subject: kde5.polkit-kde-agent: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix b/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix index 3fc3a441ac344..68bb3a9ef3dcd 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/polkit-kde-agent.nix @@ -17,15 +17,8 @@ plasmaPackage { nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kdbusaddons - kwidgetsaddons - kcoreaddons - kcrash - kconfig - kiconthemes - knotifications - polkit-qt + propagatedBuildInputs = [ + kdbusaddons kwidgetsaddons kcoreaddons kcrash kconfig ki18n kiconthemes + knotifications kwindowsystem polkit-qt ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; } -- cgit 1.4.1 From d4842648cefcc391a5672b13f686f00617dcfc0d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:01:58 -0500 Subject: kde5.powerdevil: propagate buildInputs --- pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix index 475e8878206ad..8f3b354b94782 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/powerdevil.nix @@ -10,11 +10,9 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - buildInputs = [ - kconfig kdbusaddons knotifyconfig solid udev - ]; propagatedBuildInputs = [ - kactivities kauth kdelibs4support kglobalaccel ki18n kio kidletime - kwayland libkscreen plasma-workspace qtx11extras + kconfig kdbusaddons knotifyconfig solid udev kactivities kauth + kdelibs4support kglobalaccel ki18n kio kidletime kwayland libkscreen + plasma-workspace qtx11extras ]; } -- cgit 1.4.1 From a19690156626dfabbd10756a6db606de2c093c84 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:03:12 -0500 Subject: pkgs/desktops/kde-5/plasma-5.6: remove obsolete setup-hook.sh --- pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh | 1 - 1 file changed, 1 deletion(-) delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh diff --git a/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh b/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh deleted file mode 100644 index a8d9b7e0e36f4..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -addToSearchPath XDG_DATA_DIRS @out@/share -- cgit 1.4.1 From fd272ea970df5c23857a825d723a68bdabc32c61 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:03:34 -0500 Subject: kde5.systemsettings: propagate all buildInputs --- pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix b/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix index a921e153dbc2d..47264cf38fd7c 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/systemsettings.nix @@ -11,10 +11,11 @@ plasmaPackage { makeQtWrapper ]; buildInputs = [ - kitemviews kcmutils kservice kiconthemes kxmlgui kdbusaddons - kconfig ]; - propagatedBuildInputs = [ khtml ki18n kio kwindowsystem ]; + propagatedBuildInputs = [ + khtml ki18n kio kwindowsystem kitemviews kcmutils kservice kiconthemes + kxmlgui kdbusaddons kconfig + ]; postInstall = '' wrapQtProgram "$out/bin/systemsettings5" ''; -- cgit 1.4.1 From 16ab7492988c1c8deb093df274757323f4feb3a3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:05:54 -0500 Subject: kde5.ark: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/ark.nix | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/ark.nix b/pkgs/desktops/kde-5/applications-16.04/ark.nix index 9e6f414db9e29..331c8c647ca2c 100644 --- a/pkgs/desktops/kde-5/applications-16.04/ark.nix +++ b/pkgs/desktops/kde-5/applications-16.04/ark.nix @@ -31,21 +31,9 @@ kdeApp { extra-cmake-modules kdoctools ]; - buildInputs = [ - karchive - kconfig - kcrash - kdbusaddons - kiconthemes - kservice - kpty - kwidgetsaddons - libarchive - ]; propagatedBuildInputs = [ - khtml - ki18n - kio + khtml ki18n kio karchive kconfig kcrash kdbusaddons kiconthemes kservice + kpty kwidgetsaddons libarchive ]; postInstall = '' wrapQtProgram "$out/bin/ark" \ -- cgit 1.4.1 From a2e48213111092c97351d3075579703c51730ec4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:06:26 -0500 Subject: kde5.baloo-widgets: propagate all buildInputs --- .../kde-5/applications-16.04/baloo-widgets.nix | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix b/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix index a24928160df17..fc91c92dbe6dc 100644 --- a/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix +++ b/pkgs/desktops/kde-5/applications-16.04/baloo-widgets.nix @@ -13,23 +13,15 @@ kdeApp { name = "baloo-widgets"; + meta = { + license = [ lib.licenses.lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kconfig - kservice - ]; propagatedBuildInputs = [ - baloo - kdelibs4support - kfilemetadata - ki18n - kio + baloo kconfig kservice kdelibs4support kfilemetadata ki18n kio ]; - meta = { - license = [ lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From a742a3e98f267a172d262be314154d031ea2b213 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:07:05 -0500 Subject: kde5.dolphin: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/dolphin.nix | 34 +++++----------------- 1 file changed, 7 insertions(+), 27 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix b/pkgs/desktops/kde-5/applications-16.04/dolphin.nix index 3218146f510e9..168854383fafe 100644 --- a/pkgs/desktops/kde-5/applications-16.04/dolphin.nix +++ b/pkgs/desktops/kde-5/applications-16.04/dolphin.nix @@ -29,42 +29,22 @@ kdeApp { name = "dolphin"; + meta = { + license = with lib.licenses; [ gpl2 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kinit - kcmutils - kcoreaddons - knewstuff - kdbusaddons - kbookmarks - kconfig - kparts - solid - kiconthemes - kcompletion - knotifications - phonon - baloo-widgets - ]; propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kfilemetadata - ki18n - kio - ktexteditor + kinit kcmutils kcoreaddons knewstuff kdbusaddons kbookmarks kconfig kparts + solid kiconthemes kcompletion knotifications phonon baloo-widgets baloo + kactivities kdelibs4support kfilemetadata ki18n kio ktexteditor kwindowsystem ]; postInstall = '' wrapQtProgram "$out/bin/dolphin" ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From aa8d8addeb6b2a1ecf7036004b383e1b4e446c75 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:07:33 -0500 Subject: kde5.dolphin-plugins: propagate all buildInputs --- .../kde-5/applications-16.04/dolphin-plugins.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix b/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix index 72a08c7326143..962dd2ba72055 100644 --- a/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix +++ b/pkgs/desktops/kde-5/applications-16.04/dolphin-plugins.nix @@ -11,21 +11,15 @@ kdeApp { name = "dolphin-plugins"; + meta = { + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kxmlgui - dolphin - ]; propagatedBuildInputs = [ - kdelibs4support - ki18n - kio + kdelibs4support ki18n kio kxmlgui dolphin ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From d4819465d8ad8bca848ee78753c81bcfa6e2c911 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:08:04 -0500 Subject: kde5.ffmpegthumbs: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix b/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix index 53e9d807d647a..feacf7e437e7c 100644 --- a/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix +++ b/pkgs/desktops/kde-5/applications-16.04/ffmpegthumbs.nix @@ -7,15 +7,15 @@ kdeApp { name = "ffmpegthumbs"; + meta = { + license = with lib.licenses; [ gpl2 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ + propagatedBuildInputs = [ ffmpeg kio ]; - meta = { - license = with lib.licenses; [ gpl2 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 1ebcb5f67fc6762ed1210d1302e7c23fcf6b4b49 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:08:37 -0500 Subject: kde5.filelight: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/filelight.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications-16.04/filelight.nix index df5e097a540e0..5ac101fa5018a 100644 --- a/pkgs/desktops/kde-5/applications-16.04/filelight.nix +++ b/pkgs/desktops/kde-5/applications-16.04/filelight.nix @@ -12,24 +12,19 @@ kdeApp { name = "filelight"; + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ fridh vcunat ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kio - kparts - qtscript - solid - kxmlgui + propagatedBuildInputs = [ + kio kparts qtscript solid kxmlgui ]; - postInstall = '' wrapQtProgram "$out/bin/filelight" ''; - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ fridh vcunat ]; - }; } -- cgit 1.4.1 From fc6606adaf63f3dacf10529670fc746146e10475 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:09:05 -0500 Subject: kde5.gpgmepp: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix b/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix index ac14573dcaa3f..8d6f11879d3b2 100644 --- a/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix +++ b/pkgs/desktops/kde-5/applications-16.04/gpgmepp.nix @@ -7,15 +7,14 @@ kdeApp { name = "gpgmepp"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - boost - gpgme - ]; meta = { license = with lib.licenses; [ lgpl21 bsd3 ]; maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ + extra-cmake-modules + ]; + propagatedBuildInputs = [ + boost gpgme + ]; } -- cgit 1.4.1 From fd129bd97a82ab683e8c57dab1b55edb036717fc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:09:36 -0500 Subject: kde5.gwenview: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/gwenview.nix | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix b/pkgs/desktops/kde-5/applications-16.04/gwenview.nix index 732ac11e96d0e..20fc554d01a3c 100644 --- a/pkgs/desktops/kde-5/applications-16.04/gwenview.nix +++ b/pkgs/desktops/kde-5/applications-16.04/gwenview.nix @@ -16,29 +16,19 @@ kdeApp { name = "gwenview"; + meta = { + license = with lib.licenses; [ gpl2 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - exiv2 - lcms2 - phonon - qtsvg - ]; propagatedBuildInputs = [ - baloo - kactivities - kdelibs4support - kio - qtx11extras + baloo kactivities kdelibs4support kio qtx11extras exiv2 lcms2 phonon qtsvg ]; postInstall = '' wrapQtProgram "$out/bin/gwenview" ''; - meta = { - license = with lib.licenses; [ gpl2 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From fa758af5d85868e367cdf366a3be1060ddb8cbc3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:10:10 -0500 Subject: kde5.kate: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/kate.nix | 36 ++++++------------------- 1 file changed, 8 insertions(+), 28 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kate.nix b/pkgs/desktops/kde-5/applications-16.04/kate.nix index 91eeb2314a4c4..e368483771f0e 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kate.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kate.nix @@ -28,42 +28,22 @@ kdeApp { name = "kate"; + meta = { + license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - qtscript - kconfig - kcrash - kguiaddons - kiconthemes - kinit - kjobwidgets - kparts - kxmlgui - kdbusaddons - kwallet - kitemmodels - knotifications - threadweaver - knewstuff - libgit2 - ]; propagatedBuildInputs = [ - kactivities - ki18n - kio - ktexteditor - kwindowsystem - plasma-framework + kactivities ki18n kio ktexteditor kwindowsystem plasma-framework qtscript + kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts kxmlgui + kdbusaddons kwallet kitemmodels knotifications threadweaver knewstuff + libgit2 ]; postInstall = '' wrapQtProgram "$out/bin/kate" wrapQtProgram "$out/bin/kwrite" ''; - meta = { - license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From d3b1d5740e9836bbc1a4cb2223f05db9eeeb88cf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:10:53 -0500 Subject: kde5.kcalc: propagate buildInputs --- pkgs/desktops/kde-5/applications-16.04/kcalc.nix | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix b/pkgs/desktops/kde-5/applications-16.04/kcalc.nix index e4c8e9d69253d..ce9cf46d48990 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kcalc.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kcalc.nix @@ -13,27 +13,18 @@ kdeApp { name = "kcalc"; - + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = [ lib.maintainers.fridh ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - - buildInputs = [ - gmp - kconfig - kconfigwidgets - kguiaddons - kinit - knotifications + propagatedBuildInputs = [ + gmp kconfig kconfigwidgets kguiaddons kinit knotifications ]; - postInstall = '' wrapQtProgram "$out/bin/kcalc" ''; - - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = [ lib.maintainers.fridh ]; - }; } -- cgit 1.4.1 From 6cef508a393a1422afeee681d9b07b132d85a286 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:11:19 -0500 Subject: kde5.kcolorchooser: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix b/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix index 0f8e8fbee8294..8726f6870ca3a 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kcolorchooser.nix @@ -5,12 +5,10 @@ kdeApp { name = "kcolorchooser"; - meta = { license = with lib.licenses; [ mit ]; maintainers = [ lib.maintainers.ttuegel ]; }; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ ki18n kwidgetsaddons kxmlgui ]; + propagatedBuildInputs = [ ki18n kwidgetsaddons kxmlgui ]; } -- cgit 1.4.1 From e14c14e6b9b6542f86c42e19f9684f06f920dda9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:11:48 -0500 Subject: kde5.kdegraphics-thumbnailers: propagate all buildInputs --- .../kde-5/applications-16.04/kdegraphics-thumbnailers.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix b/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix index 520bad0d066a4..cddf064e47b7b 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kdegraphics-thumbnailers.nix @@ -8,16 +8,14 @@ kdeApp { name = "kdegraphics-thumbnailers"; - nativeBuildInputs = [ - extra-cmake-modules - ]; - buildInputs = [ - kio - libkexiv2 - libkdcraw - ]; meta = { license = [ lib.licenses.lgpl21 ]; maintainers = [ lib.maintainers.ttuegel ]; }; + nativeBuildInputs = [ + extra-cmake-modules + ]; + propagatedBuildInputs = [ + kio libkexiv2 libkdcraw + ]; } -- cgit 1.4.1 From 303071c14c8268d80e20f4971e56cb2af7ec453c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:12:29 -0500 Subject: kde5.kdenetwork-filesharing: propagate all buildInputs --- .../kde-5/applications-16.04/kdenetwork-filesharing.nix | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix b/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix index 4e99a43b3913a..2190ab8ea644a 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kdenetwork-filesharing.nix @@ -11,19 +11,15 @@ kdeApp { name = "kdenetwork-filesharing"; + meta = { + license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcoreaddons - ki18n - kio - kwidgetsaddons - samba + propagatedBuildInputs = [ + kcoreaddons ki18n kio kwidgetsaddons samba ]; - meta = { - license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 1e5bee0b238f225a26510adf7c770277c932bad4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:13:14 -0500 Subject: kde5.kio-extras: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/kio-extras.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix b/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix index 9de84913a2504..9d28066cae921 100644 --- a/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix +++ b/pkgs/desktops/kde-5/applications-16.04/kio-extras.nix @@ -33,7 +33,7 @@ kdeApp { extra-cmake-modules kdoctools shared_mime_info ]; - buildInputs = [ + propagatedBuildInputs = [ exiv2 kactivities karchive kbookmarks kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons kdnssd kiconthemes ki18n kio khtml kdelibs4support kpty libmtp libssh openexr openslp phonon qtsvg samba solid -- cgit 1.4.1 From 6c721ce8495d31907bb0b690da7af80edaee6f75 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:13:57 -0500 Subject: kde5.konsole: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/konsole.nix | 38 +++++----------------- 1 file changed, 8 insertions(+), 30 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/konsole.nix b/pkgs/desktops/kde-5/applications-16.04/konsole.nix index 4b4cba2a37795..2042611f61b20 100644 --- a/pkgs/desktops/kde-5/applications-16.04/konsole.nix +++ b/pkgs/desktops/kde-5/applications-16.04/konsole.nix @@ -28,41 +28,19 @@ kdeApp { name = "konsole"; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ - extra-cmake-modules - kdoctools - makeQtWrapper - ]; - buildInputs = [ - qtscript - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kguiaddons - kiconthemes - kinit - kio - knotifications - knotifyconfig - kparts - kpty - kservice - ktextwidgets - kwidgetsaddons - kxmlgui + extra-cmake-modules kdoctools makeQtWrapper ]; propagatedBuildInputs = [ - kdelibs4support - ki18n - kwindowsystem + kdelibs4support ki18n kwindowsystem qtscript kbookmarks kcompletion kconfig + kconfigwidgets kcoreaddons kguiaddons kiconthemes kinit kio knotifications + knotifyconfig kparts kpty kservice ktextwidgets kwidgetsaddons kxmlgui ]; postInstall = '' wrapQtProgram "$out/bin/konsole" ''; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 fdl12 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 6d74e3a619518b3b9c7d0b5eb118b4731e00cf90 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:14:28 -0500 Subject: kde5.libkdcraw: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix b/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix index 319c7fc6583d7..1c1ef7dc99685 100644 --- a/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix +++ b/pkgs/desktops/kde-5/applications-16.04/libkdcraw.nix @@ -6,14 +6,14 @@ kdeApp { name = "libkdcraw"; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ + propagatedBuildInputs = [ libraw ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 3c6065bc5b820d683e2a06d3b441e897866b06b3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:14:59 -0500 Subject: kde5.libkexiv2: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix b/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix index afb1ac8365378..5a46912a109e9 100644 --- a/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix +++ b/pkgs/desktops/kde-5/applications-16.04/libkexiv2.nix @@ -6,14 +6,14 @@ kdeApp { name = "libkexiv2"; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ + propagatedBuildInputs = [ exiv2 ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From a5aaea3fb5653b7fefa21f84cbf0898021fb41af Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:15:26 -0500 Subject: kde5.libkipi: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/libkipi.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix b/pkgs/desktops/kde-5/applications-16.04/libkipi.nix index c23cd8578fb96..33903463714a7 100644 --- a/pkgs/desktops/kde-5/applications-16.04/libkipi.nix +++ b/pkgs/desktops/kde-5/applications-16.04/libkipi.nix @@ -9,14 +9,14 @@ kdeApp { name = "libkipi"; + meta = { + license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ + propagatedBuildInputs = [ kconfig ki18n kservice kxmlgui ]; - meta = { - license = with lib.licenses; [ gpl2 lgpl21 bsd3 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From fa410d5ba13f58f6d72d8a312f5be3241ac98f6f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:16:00 -0500 Subject: kde5.print-manager: propagate all buildInputs --- .../kde-5/applications-16.04/print-manager.nix | 25 ++++++---------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix index b4eab372789d6..cf0703b7d2c3f 100644 --- a/pkgs/desktops/kde-5/applications-16.04/print-manager.nix +++ b/pkgs/desktops/kde-5/applications-16.04/print-manager.nix @@ -19,29 +19,16 @@ kdeApp { name = "print-manager"; + meta = { + license = [ lib.licenses.gpl2 ]; + maintainers = [ lib.maintainers.ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - cups - kconfig - kconfigwidgets - kdbusaddons - kiconthemes - kcmutils - knotifications - kwidgetsaddons - kitemviews - ]; propagatedBuildInputs = [ - ki18n - kio - kwindowsystem - plasma-framework + cups kconfig kconfigwidgets kdbusaddons kiconthemes kcmutils knotifications + kwidgetsaddons kitemviews ki18n kio kwindowsystem plasma-framework qtdeclarative ]; - meta = { - license = [ lib.licenses.gpl2 ]; - maintainers = [ lib.maintainers.ttuegel ]; - }; } -- cgit 1.4.1 From 7027f7df7c5a20cd49ffdc9f3e08dc67f6a23e7f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:16:28 -0500 Subject: kde5.spectacle: propagate all buildInputs --- pkgs/desktops/kde-5/applications-16.04/spectacle.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix index dc2fb708b5311..7e324f2b3fc58 100644 --- a/pkgs/desktops/kde-5/applications-16.04/spectacle.nix +++ b/pkgs/desktops/kde-5/applications-16.04/spectacle.nix @@ -19,17 +19,17 @@ kdeApp { name = "spectacle"; + meta = with lib; { + maintainers = with maintainers; [ ttuegel ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ + propagatedBuildInputs = [ kconfig kcoreaddons kdbusaddons kdeclarative ki18n kio knotifications kscreen kwidgetsaddons kwindowsystem kxmlgui libkipi xcb-util-cursor ]; postFixup = '' wrapQtProgram "$out/bin/spectacle" ''; - meta = with lib; { - maintainers = with maintainers; [ ttuegel ]; - }; } -- cgit 1.4.1 From ccd46cc4b5b8c1810c26512181ed37e0914b76f4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:17:49 -0500 Subject: Revert "kde5_latest.plasma-workspace: remove patches" This reverts commit ffc217883c5c792f2876c22e2827d480ae12f6bb. --- pkgs/desktops/kde-5/plasma-5.6/default.nix | 2 +- .../desktops/kde-5/plasma-5.6/plasma-workspace.nix | 55 --- .../kde-5/plasma-5.6/plasma-workspace/default.nix | 57 ++++ .../plasma-workspace/qml-import-path.patch | 104 ++++++ .../kde-5/plasma-5.6/plasma-workspace/series | 1 + .../plasma-5.6/plasma-workspace/startkde.patch | 372 +++++++++++++++++++++ 6 files changed, 535 insertions(+), 56 deletions(-) delete mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix index 5270d2531648d..27274654ce2a8 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -80,7 +80,7 @@ let plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; plasma-nm = callPackage ./plasma-nm {}; plasma-pa = callPackage ./plasma-pa.nix {}; - plasma-workspace = callPackage ./plasma-workspace.nix {}; + plasma-workspace = callPackage ./plasma-workspace {}; plasma-workspace-wallpapers = callPackage ./plasma-workspace-wallpapers.nix {}; polkit-kde-agent = callPackage ./polkit-kde-agent.nix {}; powerdevil = callPackage ./powerdevil.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix deleted file mode 100644 index b8761998faeab..0000000000000 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace.nix +++ /dev/null @@ -1,55 +0,0 @@ -{ plasmaPackage, lib -, extra-cmake-modules, kdoctools -, baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative -, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime, kjsembed, knewstuff -, knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland -, kwin, kxmlrpcclient, libdbusmenu, libkscreen, libksysguard, libSM, libXcursor -, networkmanager-qt, pam, phonon, plasma-framework, qtquick1, qtquickcontrols -, qtscript, qtx11extras, solid, wayland -}: - -plasmaPackage { - name = "plasma-workspace"; - - nativeBuildInputs = [ - extra-cmake-modules - kdoctools - ]; - propagatedBuildInputs = [ - baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative - kdelibs4support kdesu kdewebkit kglobalaccel kidletime kjsembed knewstuff - knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland - kwin kxmlrpcclient libdbusmenu libkscreen libksysguard libSM libXcursor - networkmanager-qt pam phonon plasma-framework qtquick1 qtquickcontrols - qtscript qtx11extras solid wayland - ]; - - postPatch = '' - substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 - ''; - - postInstall = '' - rm "$out/bin/startkde" - rm "$out/bin/startplasmacompositor" - rm "$out/lib/libexec/startplasma" - rm -r "$out/share/wayland-sessions" - ''; - - preFixup = '' - wrapQtProgram $out/bin/kcheckrunning - wrapQtProgram $out/bin/kcminit - wrapQtProgram $out/bin/kcminit_startup - wrapQtProgram $out/bin/kdostartupconfig5 - wrapQtProgram $out/bin/klipper - wrapQtProgram $out/bin/krunner - wrapQtProgram $out/bin/ksmserver - wrapQtProgram $out/bin/ksplashqml - wrapQtProgram $out/bin/kstartupconfig5 - wrapQtProgram $out/bin/kuiserver5 - wrapQtProgram $out/bin/plasmashell - wrapQtProgram $out/bin/plasmawindowed - wrapQtProgram $out/bin/systemmonitor - wrapQtProgram $out/bin/xembedsniproxy - ''; -} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix new file mode 100644 index 0000000000000..73a842746426a --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix @@ -0,0 +1,57 @@ +{ plasmaPackage, lib, copyPathsToStore +, extra-cmake-modules, kdoctools +, baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative +, kdelibs4support, kdesu, kdewebkit, kglobalaccel, kidletime, kjsembed, knewstuff +, knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland +, kwin, kxmlrpcclient, libdbusmenu, libkscreen, libksysguard, libSM, libXcursor +, networkmanager-qt, pam, phonon, plasma-framework, qtquick1, qtquickcontrols +, qtscript, qtx11extras, solid, wayland +}: + +plasmaPackage { + name = "plasma-workspace"; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + ]; + propagatedBuildInputs = [ + baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative + kdelibs4support kdesu kdewebkit kglobalaccel kidletime kjsembed knewstuff + knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland + kwin kxmlrpcclient libdbusmenu libkscreen libksysguard libSM libXcursor + networkmanager-qt pam phonon plasma-framework qtquick1 qtquickcontrols + qtscript qtx11extras solid wayland + ]; + + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + + postPatch = '' + substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ + --replace kdostartupconfig5 $out/bin/kdostartupconfig5 + ''; + + postInstall = '' + rm "$out/bin/startkde" + rm "$out/bin/startplasmacompositor" + rm "$out/lib/libexec/startplasma" + rm -r "$out/share/wayland-sessions" + ''; + + preFixup = '' + wrapQtProgram $out/bin/kcheckrunning + wrapQtProgram $out/bin/kcminit + wrapQtProgram $out/bin/kcminit_startup + wrapQtProgram $out/bin/kdostartupconfig5 + wrapQtProgram $out/bin/klipper + wrapQtProgram $out/bin/krunner + wrapQtProgram $out/bin/ksmserver + wrapQtProgram $out/bin/ksplashqml + wrapQtProgram $out/bin/kstartupconfig5 + wrapQtProgram $out/bin/kuiserver5 + wrapQtProgram $out/bin/plasmashell + wrapQtProgram $out/bin/plasmawindowed + wrapQtProgram $out/bin/systemmonitor + wrapQtProgram $out/bin/xembedsniproxy + ''; +} diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch new file mode 100644 index 0000000000000..1d34001be597d --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch @@ -0,0 +1,104 @@ +Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml ++++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl + import QtQuick.Layouts 1.1 + + import org.kde.plasma.core 2.0 as PlasmaCore +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: analogclock +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +@@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.plasma.workspace.components 2.0 + import org.kde.kcoreaddons 1.0 as KCoreAddons +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batteryItem +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +@@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.workspace.components 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + MouseArea { + id: root +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma + import org.kde.plasma.components 2.0 as Components + import org.kde.plasma.extras 2.0 as PlasmaExtras + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + FocusScope { + id: dialog +Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml ++++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.kcoreaddons 1.0 as KCoreAddons + import org.kde.kquickcontrolsaddons 2.0 +-import "logic.js" as Logic ++import "../code/logic.js" as Logic + + Item { + id: batterymonitor +Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml ++++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +@@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 + import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 + import org.kde.kquickcontrolsaddons 2.0 +-import "data.js" as Data ++import "../code/data.js" as Data + + Flow { + id: lockout +Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +@@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas + + import org.kde.plasma.private.notifications 1.0 + +-import "uiproperties.js" as UiProperties ++import "../code/uiproperties.js" as UiProperties + + MouseEventListener { + id: notificationsApplet +Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +=================================================================== +--- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml ++++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +@@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma + // import org.kde.plasma.extras 2.0 as PlasmaExtras + + import org.kde.private.systemtray 2.0 as SystemTray +-import "Layout.js" as LayoutManager ++import "../code/Layout.js" as LayoutManager + + Item { + id: root diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series new file mode 100644 index 0000000000000..b9081298bd693 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/series @@ -0,0 +1 @@ +qml-import-path.patch diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch new file mode 100644 index 0000000000000..eea0ae4c199d2 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/startkde.patch @@ -0,0 +1,372 @@ +Index: plasma-workspace-5.5.5/startkde/startkde.cmake +=================================================================== +--- plasma-workspace-5.5.5.orig/startkde/startkde.cmake ++++ plasma-workspace-5.5.5/startkde/startkde.cmake +@@ -1,8 +1,36 @@ +-#!/bin/sh ++#!@bash@ + # + # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) + # + ++set -x ++ ++# The KDE icon cache is supposed to update itself ++# automatically, but it uses the timestamp on the icon ++# theme directory as a trigger. Since in Nix the ++# timestamp is always the same, this doesn't work. So as ++# a workaround, nuke the icon cache on login. This isn't ++# perfect, since it may require logging out after ++# installing new applications to update the cache. ++# See http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html ++rm -fv $HOME/.cache/icon-cache.kcache ++ ++# Qt writes a weird ‘libraryPath’ line to ++# ~/.config/Trolltech.conf that causes the KDE plugin ++# paths of previous KDE invocations to be searched. ++# Obviously using mismatching KDE libraries is potentially ++# disastrous, so here we nuke references to the Nix store ++# in Trolltech.conf. A better solution would be to stop ++# Qt from doing this wackiness in the first place. ++if [ -e $HOME/.config/Trolltech.conf ]; then ++ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf ++fi ++ ++# (NixOS) We run kbuildsycoca5 before starting the user session because things ++# may be missing or moved if they have run nixos-rebuild and it may not be ++# possible for them to start Konsole to run it manually! ++@kbuildsycoca5@ ++ + if test "x$1" = x--failsafe; then + KDE_FAILSAFE=1 # General failsafe flag + KWIN_COMPOSE=N # Disable KWin's compositing +@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP + # we have to unset this for Darwin since it will screw up KDE's dynamic-loading + unset DYLD_FORCE_FLAT_NAMESPACE + +-# in case we have been started with full pathname spec without being in PATH +-bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'` +-if [ -n "$bindir" ]; then +- qbindir=`qtpaths --binaries-dir` +- qdbus=$qbindir/qdbus +- case $PATH in +- $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;; +- *) PATH=$bindir:$PATH; export PATH;; +- esac +-else +- qdbus=qdbus +-fi +- + # Check if a KDE session already is running and whether it's possible to connect to X +-kcheckrunning ++@kcheckrunning@ + kcheckrunning_result=$? + if test $kcheckrunning_result -eq 0 ; then +- echo "KDE seems to be already running on this display." +- xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null ++ echo "KDE seems to be already running on this display." ++ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display." + exit 1 + elif test $kcheckrunning_result -eq 2 ; then + echo "\$DISPLAY is not set or cannot connect to the X server." +- exit 1 ++ exit 1 + fi + + # Boot sequence: +@@ -57,13 +72,8 @@ fi + # * Then ksmserver is started which takes control of the rest of the startup sequence + + # We need to create config folder so we can write startupconfigkeys +-if [ ${XDG_CONFIG_HOME} ]; then +- configDir=$XDG_CONFIG_HOME; +-else +- configDir=${HOME}/.config; #this is the default, http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html +-fi +- +-mkdir -p $configDir ++configDir=$(@qtpaths@ --writable-path GenericConfigLocation) ++mkdir -p "$configDir" + + #This is basically setting defaults so we can use them with kstartupconfig5 + cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then ++ : # ok ++else ++ echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 ++ test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null ++ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" ++ exit 1 ++fi ++ + ksplash_pid= + if test -z "$dl"; then + # the splashscreen and progress indicator + case "$ksplashrc_ksplash_engine" in + KSplashQML) +- ksplash_pid=`ksplashqml "${ksplashrc_ksplash_theme}" --pid` ++ ksplash_pid=`@out@/bin/ksplashqml "${ksplashrc_ksplash_theme}" --pid` + ;; + None) + ;; +@@ -201,8 +199,7 @@ fi + # For anything else (that doesn't set env vars, or that needs a window manager), + # better use the Autostart folder. + +-# TODO: Use GenericConfigLocation once we depend on Qt 5.4 +-scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` ++scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g') + + # Add /env/ to the directory to locate the scripts to be sourced + for prefix in `echo $scriptpath`; do +@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override + usr_fdir=$HOME/.fonts + + if test -n "$KDEDIRS"; then +- kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` ++ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'` + sys_odir=$kdedirs_first/share/fonts/override + sys_fdir=$kdedirs_first/share/fonts + else +@@ -245,23 +242,13 @@ fi + # add the user's dirs to the font path, as they might simply have been made + # read-only by the administrator, for whatever reason. + +-test -d "$sys_odir" && xset +fp "$sys_odir" +-test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") +-test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") +-test -d "$sys_fdir" && xset fp+ "$sys_fdir" ++test -d "$sys_odir" && @xset@ +fp "$sys_odir" ++test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" ) ++test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" ) ++test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir" + + # Ask X11 to rebuild its font list. +-xset fp rehash +- +-# Set a left cursor instead of the standard X11 "X" cursor, since I've heard +-# from some users that they're confused and don't know what to do. This is +-# especially necessary on slow machines, where starting KDE takes one or two +-# minutes until anything appears on the screen. +-# +-# If the user has overwritten fonts, the cursor font may be different now +-# so don't move this up. +-# +-xsetroot -cursor_name left_ptr ++@xset@ fp rehash + + # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap + if test -n "$GS_LIB" ; then +@@ -274,26 +261,6 @@ fi + + echo 'startkde: Starting up...' 1>&2 + +-# Make sure that the KDE prefix is first in XDG_DATA_DIRS and that it's set at all. +-# The spec allows XDG_DATA_DIRS to be not set, but X session startup scripts tend +-# to set it to a list of paths *not* including the KDE prefix if it's not /usr or +-# /usr/local. +-if test -z "$XDG_DATA_DIRS"; then +- XDG_DATA_DIRS="@CMAKE_INSTALL_PREFIX@/@SHARE_INSTALL_PREFIX@:/usr/share:/usr/local/share" +-fi +-export XDG_DATA_DIRS +- +-# Make sure that D-Bus is running +-if $qdbus >/dev/null 2>/dev/null; then +- : # ok +-else +- echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 +- test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" +- exit 1 +-fi +- +- + # Mark that full KDE session is running (e.g. Konqueror preloading works only + # with full KDE running). The KDE_FULL_SESSION property can be detected by + # any X client connected to the same X session, even if not launched +@@ -318,11 +285,11 @@ fi + # + KDE_FULL_SESSION=true + export KDE_FULL_SESSION +-xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true ++@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true + + KDE_SESSION_VERSION=5 + export KDE_SESSION_VERSION +-xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 ++@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 + + KDE_SESSION_UID=`id -ru` + export KDE_SESSION_UID +@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP + + # At this point all the environment is ready, let's send it to kwalletd if running + if test -n "$PAM_KWALLET_LOGIN" ; then +- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN + fi + # ...and also to kwalletd5 + if test -n "$PAM_KWALLET5_LOGIN" ; then +- env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN + fi + + # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment +@@ -349,18 +316,18 @@ if test $? -ne 0; then + # Startup error + echo 'startkde: Could not sync environment to dbus.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not sync environment to dbus." ++ @xmessage@ -geometry 500x100 "Could not sync environment to dbus." + exit 1 + fi + + # We set LD_BIND_NOW to increase the efficiency of kdeinit. + # kdeinit unsets this variable before loading applications. +-LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup ++LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup + if test $? -ne 0; then + # Startup error + echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation." + exit 1 + fi + +@@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag + # lock now and do the rest of the KDE startup underneath the locker. + KSMSERVEROPTIONS="" + test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" +-kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS ++@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS + if test $? -eq 255; then + # Startup error + echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null +- xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation." + fi + +-wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` ++wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true` + + if test x"$wait_drkonqi"x = x"true"x ; then + # wait for remaining drkonqi instances with timeout (in seconds) +- wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` ++ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900` + wait_drkonqi_counter=0 +- while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do ++ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do + sleep 5 + wait_drkonqi_counter=$((wait_drkonqi_counter+5)) + if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then + # ask remaining drkonqis to die in a graceful way +- $qdbus | grep 'org.kde.drkonqi-' | while read address ; do +- $qdbus "$address" "/MainApplication" "quit" ++ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do ++ @qdbus@ "$address" "/MainApplication" "quit" + done + break + fi +@@ -411,12 +378,12 @@ echo 'startkde: Shutting down...' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null + + # Clean up +-kdeinit5_shutdown ++@kdeinit5_shutdown@ + + unset KDE_FULL_SESSION +-xprop -root -remove KDE_FULL_SESSION ++@xprop@ -root -remove KDE_FULL_SESSION + unset KDE_SESSION_VERSION +-xprop -root -remove KDE_SESSION_VERSION ++@xprop@ -root -remove KDE_SESSION_VERSION + unset KDE_SESSION_UID + + echo 'startkde: Done.' 1>&2 -- cgit 1.4.1 From bad36556fe33c5500a69136858b86771c569bbd2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 14:26:18 -0500 Subject: kde5.plasma-workspace: update import path patch --- .../plasma-workspace/qml-import-path.patch | 52 +++++++++++----------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch index 1d34001be597d..7842109669a21 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/qml-import-path.patch @@ -1,20 +1,20 @@ -Index: plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml +Index: plasma-workspace-5.6.3/applets/analog-clock/contents/ui/analogclock.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/analog-clock/contents/ui/analogclock.qml -+++ plasma-workspace-5.5.1/applets/analog-clock/contents/ui/analogclock.qml -@@ -25,7 +25,7 @@ import org.kde.plasma.calendar 2.0 as Pl - import QtQuick.Layouts 1.1 +--- plasma-workspace-5.6.3.orig/applets/analog-clock/contents/ui/analogclock.qml ++++ plasma-workspace-5.6.3/applets/analog-clock/contents/ui/analogclock.qml +@@ -26,7 +26,7 @@ import QtQuick.Layouts 1.1 import org.kde.plasma.core 2.0 as PlasmaCore + import org.kde.plasma.components 2.0 as PlasmaComponents -import "logic.js" as Logic +import "../code/logic.js" as Logic Item { id: analogclock -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +Index: plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/BatteryItem.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/BatteryItem.qml +--- plasma-workspace-5.6.3.orig/applets/batterymonitor/package/contents/ui/BatteryItem.qml ++++ plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/BatteryItem.qml @@ -26,7 +26,7 @@ import org.kde.plasma.components 2.0 as import org.kde.plasma.extras 2.0 as PlasmaExtras import org.kde.plasma.workspace.components 2.0 @@ -24,10 +24,10 @@ Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/Battery Item { id: batteryItem -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +Index: plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml +--- plasma-workspace-5.6.3.orig/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml ++++ plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/CompactRepresentation.qml @@ -24,7 +24,7 @@ import QtQuick.Layouts 1.1 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as Components @@ -37,10 +37,10 @@ Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/Compact MouseArea { id: root -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +Index: plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/PopupDialog.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDialog.qml +--- plasma-workspace-5.6.3.orig/applets/batterymonitor/package/contents/ui/PopupDialog.qml ++++ plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/PopupDialog.qml @@ -23,7 +23,7 @@ import org.kde.plasma.core 2.0 as Plasma import org.kde.plasma.components 2.0 as Components import org.kde.plasma.extras 2.0 as PlasmaExtras @@ -50,10 +50,10 @@ Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/PopupDi FocusScope { id: dialog -Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +Index: plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/batterymonitor.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml -+++ plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/batterymonitor.qml +--- plasma-workspace-5.6.3.orig/applets/batterymonitor/package/contents/ui/batterymonitor.qml ++++ plasma-workspace-5.6.3/applets/batterymonitor/package/contents/ui/batterymonitor.qml @@ -25,7 +25,7 @@ import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.kcoreaddons 1.0 as KCoreAddons @@ -63,10 +63,10 @@ Index: plasma-workspace-5.5.1/applets/batterymonitor/package/contents/ui/battery Item { id: batterymonitor -Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +Index: plasma-workspace-5.6.3/applets/lock_logout/contents/ui/lockout.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/lock_logout/contents/ui/lockout.qml -+++ plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml +--- plasma-workspace-5.6.3.orig/applets/lock_logout/contents/ui/lockout.qml ++++ plasma-workspace-5.6.3/applets/lock_logout/contents/ui/lockout.qml @@ -23,7 +23,7 @@ import org.kde.plasma.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 @@ -76,10 +76,10 @@ Index: plasma-workspace-5.5.1/applets/lock_logout/contents/ui/lockout.qml Flow { id: lockout -Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +Index: plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/notifications/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml +--- plasma-workspace-5.6.3.orig/applets/notifications/package/contents/ui/main.qml ++++ plasma-workspace-5.6.3/applets/notifications/package/contents/ui/main.qml @@ -28,7 +28,7 @@ import org.kde.plasma.extras 2.0 as Plas import org.kde.plasma.private.notifications 1.0 @@ -89,10 +89,10 @@ Index: plasma-workspace-5.5.1/applets/notifications/package/contents/ui/main.qml MouseEventListener { id: notificationsApplet -Index: plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +Index: plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml =================================================================== ---- plasma-workspace-5.5.1.orig/applets/systemtray/package/contents/ui/main.qml -+++ plasma-workspace-5.5.1/applets/systemtray/package/contents/ui/main.qml +--- plasma-workspace-5.6.3.orig/applets/systemtray/package/contents/ui/main.qml ++++ plasma-workspace-5.6.3/applets/systemtray/package/contents/ui/main.qml @@ -25,7 +25,7 @@ import org.kde.plasma.core 2.0 as Plasma // import org.kde.plasma.extras 2.0 as PlasmaExtras -- cgit 1.4.1 From 370120bd5f0b0d95af6d123653a3a3dfc358111b Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 30 Apr 2016 12:16:52 -0500 Subject: kde5: don't install GStreamer modules system-wide --- .../modules/services/x11/desktop-managers/kde5.nix | 29 ++++++++++++---------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 56b45609a2cdb..2e9183da970a4 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -105,12 +105,6 @@ in pkgs.phonon-backend-gstreamer pkgs.kde5.phonon-backend-gstreamer - pkgs.gst_all_1.gstreamer - pkgs.gst_all_1.gst-plugins-base - pkgs.gst_all_1.gst-plugins-good - pkgs.gst_all_1.gst-plugins-ugly - pkgs.gst_all_1.gst-plugins-bad - pkgs.gst_all_1.gst-libav # for mp3 playback ] # Plasma 5.5 and later has a Breeze GTK theme. @@ -138,14 +132,23 @@ in target = "X11/xkb"; }; - environment.profileRelativeEnvVars = { - GST_PLUGIN_SYSTEM_PATH_1_0 = [ "/lib/gstreamer-1.0" ]; - }; - # Enable GTK applications to load SVG icons - environment.variables = mkIf (lib.hasAttr "breeze-icons" kde5) { - GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; - }; + environment.variables = + { + GST_PLUGIN_SYSTEM_PATH_1_0 = + lib.makeSearchPath "/lib/gstreamer-1.0" + (builtins.map (pkg: pkg.out) (with pkgs.gst_all_1; [ + gstreamer + gst-plugins-base + gst-plugins-good + gst-plugins-ugly + gst-plugins-bad + gst-libav # for mp3 playback + ])); + } + // (if (lib.hasAttr "breeze-icons" kde5) + then { GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; } + else { }); fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; -- cgit 1.4.1 From 609a251ee98b17ceb6d5ad8852b3f8fe269923a8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 30 Apr 2016 14:46:12 -0500 Subject: kde5.breeze-icons: no dev output --- pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix index 3524962087e6b..773261638c980 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix @@ -5,6 +5,7 @@ kdeFramework { name = "breeze-icons"; + outputs = [ "out" ]; nativeBuildInputs = [ extra-cmake-modules ]; propagatedBuildInputs = [ qtsvg ]; } -- cgit 1.4.1 From f90a7bf354779e95791feb220dbce1c363c2eaf6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 30 Apr 2016 14:46:31 -0500 Subject: kde5.oxygen-icons5: no dev output --- pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix index 0e51989843802..0b5c75b960d31 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix @@ -9,5 +9,6 @@ kdeFramework { license = lib.licenses.lgpl3Plus; maintainers = [ lib.maintainers.ttuegel ]; }; + outputs = [ "out" ]; nativeBuildInputs = [ extra-cmake-modules ]; } -- cgit 1.4.1 From a5a98ce5a31f97e7831de10955b31c86b6ded851 Mon Sep 17 00:00:00 2001 From: Yacine Hmito Date: Sun, 1 May 2016 15:55:39 +0200 Subject: Added gpyh to the list of maintainers --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 2bf60c585fc4d..8550c4fdbb3d6 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -146,6 +146,7 @@ giogadi = "Luis G. Torres "; gleber = "Gleb Peregud "; globin = "Robin Gloster "; + gpyh = "Yacine Hmito "; goibhniu = "Cillian de Róiste "; Gonzih = "Max Gonzih "; gridaphobe = "Eric Seidel "; -- cgit 1.4.1 From 60a7c607d155f7c4722ca6baefc267a007fe9b64 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 1 May 2016 16:08:59 +0200 Subject: hol-light: fix build with camlp5-6.16 --- pkgs/applications/science/logic/hol_light/Makefile.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/hol_light/Makefile.patch b/pkgs/applications/science/logic/hol_light/Makefile.patch index 2cb05f27a4f6d..b572001a75d6d 100644 --- a/pkgs/applications/science/logic/hol_light/Makefile.patch +++ b/pkgs/applications/science/logic/hol_light/Makefile.patch @@ -7,7 +7,7 @@ Index: Makefile else if test ${CAMLP5_VERSION} = "6.02.2" -o ${CAMLP5_VERSION} = "6.02.3" -o ${CAMLP5_VERSION} = "6.03" -o ${CAMLP5_VERSION} = "6.04" -o ${CAMLP5_VERSION} = "6.05" -o ${CAMLP5_VERSION} = "6.06" ; \ then cp pa_j_3.1x_6.02.2.ml pa_j.ml; \ - else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" ; \ -+ else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" -o ${CAMLP5_VERSION} = "6.13" -o ${CAMLP5_VERSION} = "6.14" ; \ ++ else if test ${CAMLP5_VERSION} = "6.06" -o ${CAMLP5_VERSION} = "6.07" -o ${CAMLP5_VERSION} = "6.08" -o ${CAMLP5_VERSION} = "6.09" -o ${CAMLP5_VERSION} = "6.10" -o ${CAMLP5_VERSION} = "6.11" -o ${CAMLP5_VERSION} = "6.12" -o ${CAMLP5_VERSION} = "6.13" -o ${CAMLP5_VERSION} = "6.14" -o ${CAMLP5_VERSION} = "6.16" ; \ then cp pa_j_3.1x_6.11.ml pa_j.ml; \ else cp pa_j_3.1x_${CAMLP5_BINARY_VERSION}.xx.ml pa_j.ml; \ fi \ -- cgit 1.4.1 From 3a6c85da65977c9f2a20fb40b18aaac8077e53b8 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 30 Apr 2016 16:18:19 +0200 Subject: camlp5: 6.14 -> 6.16 --- pkgs/development/tools/ocaml/camlp5/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index 83dd74d321ec6..bb44bbc8d6eeb 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -7,11 +7,11 @@ in stdenv.mkDerivation { - name = "camlp5${if transitional then "_transitional" else ""}-6.14"; + name = "camlp5${if transitional then "_transitional" else ""}-6.16"; src = fetchurl { - url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.14.tgz; - sha256 = "1ql04iyvclpyy9805kpddc4ndjb5d0qg4shhi2fc6bixi49fvy89"; + url = http://camlp5.gforge.inria.fr/distrib/src/camlp5-6.16.tgz; + sha256 = "1caqa2rl7rav7pfwv1l1j0j18yr1qzyyqz0wa9519x91ckznqi7x"; }; buildInputs = [ ocaml ]; -- cgit 1.4.1 From 84df0ba64c7571b98b7ef7a9624f684c11569065 Mon Sep 17 00:00:00 2001 From: yawnt Date: Mon, 2 May 2016 10:17:55 +0200 Subject: jdk: refactor install phase, avoid deleting source files needed for IDE support --- pkgs/development/compilers/oraclejdk/jdk-linux-base.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index a18ffcbf3d4b9..f7bc2afcc4cf4 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -103,7 +103,8 @@ let result = stdenv.mkDerivation rec { mv $sourceRoot $out fi - for file in $out/* + shopt -s extglob + for file in $out/!(*src.zip) do if test -f $file ; then rm $file -- cgit 1.4.1 From 199c998bcc7d5e64a9b8e30a964c2fac31e12848 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sat, 16 Apr 2016 16:13:51 +0200 Subject: nsd: 4.1.7 -> 4.1.9 Features ======== * Fix #732: tcp-mss, outgoing-tcp-mss options for nsd.conf, patch from Daisuke Higashi. * Fix #739: zonefile changes when mtime is small are detected on reload, if filesystem supports precision mtime values. * RR type CSYNC (RFC7477) syntax is supported. Bugfixes ======== * Change the nsd.db file version because of nanosecond precision fix. * take advantage of arc4random_uniform if available, patch from Loganaden Velvindron. * Fix flto check for OSX clang. * Define _DEFAULT_SOURCE with _BSD_SOURCE for glibc 2.20 on Linux. * Fix #736: segfault during zone transfer. * Fix #744: Fix that NSD replies for configured but unloaded zone with SERVFAIL, not REFUSED. --- pkgs/servers/dns/nsd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix index 646e50c78f957..48dd535382da5 100644 --- a/pkgs/servers/dns/nsd/default.nix +++ b/pkgs/servers/dns/nsd/default.nix @@ -13,11 +13,11 @@ }: stdenv.mkDerivation rec { - name = "nsd-4.1.7"; + name = "nsd-4.1.9"; src = fetchurl { url = "http://www.nlnetlabs.nl/downloads/nsd/${name}.tar.gz"; - sha256 = "12hskfgfbkvcgpa1xxkqd8lnc6xvln1amn97x6avfnj9kfrbxa3v"; + sha256 = "1wn8jm5kpp81m88c77j97850mnmd87yaw8qp3xsdwcakcd6j44dq"; }; buildInputs = [ libevent openssl ]; -- cgit 1.4.1 From 097a05a5b1c0917a0ab354a78b275fe4e2869a3d Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Mon, 2 May 2016 17:31:30 +0200 Subject: redis-dump: init at 0.3.5 --- pkgs/development/tools/redis-dump/.bundle/config | 3 ++ pkgs/development/tools/redis-dump/Gemfile | 3 ++ pkgs/development/tools/redis-dump/Gemfile.lock | 21 ++++++++++++ pkgs/development/tools/redis-dump/default.nix | 20 ++++++++++++ pkgs/development/tools/redis-dump/gemset.nix | 41 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 6 files changed, 92 insertions(+) create mode 100644 pkgs/development/tools/redis-dump/.bundle/config create mode 100644 pkgs/development/tools/redis-dump/Gemfile create mode 100644 pkgs/development/tools/redis-dump/Gemfile.lock create mode 100644 pkgs/development/tools/redis-dump/default.nix create mode 100644 pkgs/development/tools/redis-dump/gemset.nix diff --git a/pkgs/development/tools/redis-dump/.bundle/config b/pkgs/development/tools/redis-dump/.bundle/config new file mode 100644 index 0000000000000..b81abe028c3ca --- /dev/null +++ b/pkgs/development/tools/redis-dump/.bundle/config @@ -0,0 +1,3 @@ +--- +BUNDLE_PATH: vendor +BUNDLE_DISABLE_SHARED_GEMS: '1' diff --git a/pkgs/development/tools/redis-dump/Gemfile b/pkgs/development/tools/redis-dump/Gemfile new file mode 100644 index 0000000000000..f78cb0873c08e --- /dev/null +++ b/pkgs/development/tools/redis-dump/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'redis-dump' diff --git a/pkgs/development/tools/redis-dump/Gemfile.lock b/pkgs/development/tools/redis-dump/Gemfile.lock new file mode 100644 index 0000000000000..283a3815f2235 --- /dev/null +++ b/pkgs/development/tools/redis-dump/Gemfile.lock @@ -0,0 +1,21 @@ +GEM + remote: https://rubygems.org/ + specs: + drydock (0.6.9) + redis (3.3.0) + redis-dump (0.3.5) + drydock (>= 0.6.9) + redis (>= 2.0) + uri-redis (>= 0.4.0) + yajl-ruby (>= 0.1) + uri-redis (0.4.2) + yajl-ruby (1.2.1) + +PLATFORMS + ruby + +DEPENDENCIES + redis-dump + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/development/tools/redis-dump/default.nix b/pkgs/development/tools/redis-dump/default.nix new file mode 100644 index 0000000000000..bc1adf730a351 --- /dev/null +++ b/pkgs/development/tools/redis-dump/default.nix @@ -0,0 +1,20 @@ +{ stdenv, lib, bundlerEnv, ruby, perl, autoconf }: + +bundlerEnv { + name = "redis-dump-0.3.5"; + + inherit ruby; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + gemset = ./gemset.nix; + + buildInputs = [ perl autoconf ]; + + meta = with lib; { + description = "Backup and restore your Redis data to and from JSON"; + homepage = http://delanotes.com/redis-dump/; + license = licenses.mit; + maintainers = with maintainers; [ offline ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/development/tools/redis-dump/gemset.nix b/pkgs/development/tools/redis-dump/gemset.nix new file mode 100644 index 0000000000000..4054f4bb0a7a5 --- /dev/null +++ b/pkgs/development/tools/redis-dump/gemset.nix @@ -0,0 +1,41 @@ +{ + drydock = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0grf3361mh93lczljmnwafl7gbcp9kk1bjpfwx4ykpd43fzdbfyj"; + type = "gem"; + }; + version = "0.6.9"; + }; + redis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v68ggm0pwcyml3ngfyngwgvypwmsrmji1kyx48qqcg045zjs5p6"; + type = "gem"; + }; + version = "3.3.0"; + }; + redis-dump = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0y6s3nvcw84jqqvp9pjg9qmqyc0b8jkrp0dknhjjr0lg2q3fq87h"; + type = "gem"; + }; + version = "0.3.5"; + }; + uri-redis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "13n8ak41rikkbmml054pir4i1xbgjpmf3dbqihc2kcrgmz3dg81a"; + type = "gem"; + }; + version = "0.4.2"; + }; + yajl-ruby = { + source = { + sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf"; + type = "gem"; + }; + version = "1.2.1"; + }; +} \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..3b787bb93875e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6243,6 +6243,10 @@ in hammer = callPackage ../development/tools/parsing/hammer { }; + redis-dump = callPackage ../development/tools/redis-dump { + ruby = ruby_2_0; + }; + re2c = callPackage ../development/tools/parsing/re2c { }; remake = callPackage ../development/tools/build-managers/remake { }; -- cgit 1.4.1 From 208f1fb7e153ab5076aeb826050833e428c17716 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Sun, 1 May 2016 13:00:49 -0400 Subject: Allow any hash for git-based fetch* derivations Instead of hard-coding which hash types are available, merge the input arg set into the fetchzip arguments to enable passing any hash type that the underyling fetchurl (underneath fetchzip, which does the same thing) supports for hash agility. Also, provide rev attributes on all of these derivations, not just fetchFromGitHub. --- pkgs/top-level/all-packages.nix | 45 +++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a52289d7e2b4..4f38ab19a0d77 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -223,39 +223,54 @@ in fetchzip = callPackage ../build-support/fetchzip { }; - fetchFromGitHub = { owner, repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; + fetchFromGitHub = { + owner, repo, rev, name ? "${repo}-${rev}-src", + ... # For hash agility + }@args: fetchzip ({ + inherit name; url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz"; meta.homepage = "https://github.com/${owner}/${repo}/"; - } // { inherit rev; }; + } // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; }; - fetchFromBitbucket = { owner, repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; + fetchFromBitbucket = { + owner, repo, rev, name ? "${repo}-${rev}-src", + ... # For hash agility + }@args: fetchzip ({ + inherit name; url = "https://bitbucket.org/${owner}/${repo}/get/${rev}.tar.gz"; meta.homepage = "https://bitbucket.org/${owner}/${repo}/"; extraPostFetch = ''rm -f "$out"/.hg_archival.txt''; # impure file; see #12002 - }; + } // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; }; # cgit example, snapshot support is optional in cgit - fetchFromSavannah = { repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; + fetchFromSavannah = { + repo, rev, name ? "${repo}-${rev}-src", + ... # For hash agility + }@args: fetchzip ({ + inherit name; url = "http://git.savannah.gnu.org/cgit/${repo}.git/snapshot/${repo}-${rev}.tar.gz"; meta.homepage = "http://git.savannah.gnu.org/cgit/${repo}.git/"; - }; + } // removeAttrs args [ "repo" "rev" ]) // { inherit rev; }; # gitlab example - fetchFromGitLab = { owner, repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; + fetchFromGitLab = { + owner, repo, rev, name ? "${repo}-${rev}-src", + ... # For hash agility + }@args: fetchzip ({ + inherit name; url = "https://gitlab.com/${owner}/${repo}/repository/archive.tar.gz?ref=${rev}"; meta.homepage = "https://gitlab.com/${owner}/${repo}/"; - }; + } // removeAttrs args [ "owner" "repo" "rev" ]) // { inherit rev; }; # gitweb example, snapshot support is optional in gitweb - fetchFromRepoOrCz = { repo, rev, sha256, name ? "${repo}-${rev}-src" }: fetchzip { - inherit name sha256; + fetchFromRepoOrCz = { + repo, rev, name ? "${repo}-${rev}-src", + ... # For hash agility + }@args: fetchzip ({ + inherit name; url = "http://repo.or.cz/${repo}.git/snapshot/${rev}.tar.gz"; meta.homepage = "http://repo.or.cz/${repo}.git/"; - }; + } // removeAttrs args [ "repo" "rev" ]) // { inherit rev; }; fetchNuGet = callPackage ../build-support/fetchnuget { }; buildDotnetPackage = callPackage ../build-support/build-dotnet-package { }; -- cgit 1.4.1 From f04e0e70e8ddb82686a2f660d292e7338ed564d2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 2 May 2016 13:01:59 -0500 Subject: Revert "Revert "dbus: 1.8.20 -> 1.10.8"" This reverts commit 9eb107dc52409c5f438402eadf48b5dcd64da6ac. --- pkgs/development/libraries/dbus/default.nix | 7 +++---- .../dbus/ignore-missing-includedirs.patch | 23 ---------------------- 2 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 pkgs/development/libraries/dbus/ignore-missing-includedirs.patch diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index 83635d9739f18..dd86ca540815a 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -6,8 +6,8 @@ assert x11Support -> libX11 != null && libSM != null; let - version = "1.8.20"; - sha256 = "0fkh3d5r57a659hw9lqnw4v0bc5556vx54fsf7l9c732ci6byksw"; + version = "1.10.8"; + sha256 = "0560y3hxpgh346w6avcrcz79c8ansmn771y5xpcvvlr6m8mx5wxs"; self = stdenv.mkDerivation { name = "dbus-${version}"; @@ -17,8 +17,7 @@ self = stdenv.mkDerivation { inherit sha256; }; - patches = [ ./ignore-missing-includedirs.patch ] - ++ lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; + patches = lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; postPatch = '' substituteInPlace tools/Makefile.in \ --replace 'install-localstatelibDATA:' 'disabled:' \ diff --git a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch b/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch deleted file mode 100644 index 2781f4ae3de51..0000000000000 --- a/pkgs/development/libraries/dbus/ignore-missing-includedirs.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -ru -x '*~' dbus-1.2.24-orig/bus/config-parser.c dbus-1.2.24/bus/config-parser.c ---- dbus-1.2.24-orig/bus/config-parser.c 2010-03-23 20:01:27.000000000 +0100 -+++ dbus-1.2.24/bus/config-parser.c 2010-07-20 14:17:20.000000000 +0200 -@@ -2159,12 +2159,16 @@ - - retval = FALSE; - -- dir = _dbus_directory_open (dirname, error); -+ dbus_error_init (&tmp_error); -+ -+ dir = _dbus_directory_open (dirname, &tmp_error); - - if (dir == NULL) -- goto failed; -+ { -+ retval = TRUE; -+ goto failed; -+ } - -- dbus_error_init (&tmp_error); - while (_dbus_directory_get_next_file (dir, &filename, &tmp_error)) - { - DBusString full_path; -- cgit 1.4.1 From 60b34849284db4aec8f4fdab722273096e1ed002 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 6 Mar 2016 17:38:53 -0800 Subject: dbus: Fix for new 1.10 version (cherry picked from commit 68a4a6df3971d66aa988bba680351a30fbadbed3) --- nixos/modules/services/system/dbus.nix | 68 ++++++++++++---------------------- nixos/modules/system/boot/systemd.nix | 2 + 2 files changed, 26 insertions(+), 44 deletions(-) diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 59c2e482e1ad2..434211aaac412 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -10,6 +10,16 @@ let homeDir = "/var/run/dbus"; + systemExtraxml = concatStrings (flip concatMap cfg.packages (d: [ + "${d}/share/dbus-1/system-services" + "${d}/etc/dbus-1/system.d" + ])); + + sessionExtraxml = concatStrings (flip concatMap cfg.packages (d: [ + "${d}/share/dbus-1/services" + "${d}/etc/dbus-1/session.d" + ])); + configDir = pkgs.stdenv.mkDerivation { name = "dbus-conf"; @@ -19,47 +29,17 @@ let buildCommand = '' mkdir -p $out - cp -v ${pkgs.dbus.daemon}/etc/dbus-1/system.conf $out/system.conf - - # !!! Hm, these `sed' calls are rather error-prone... - - # Tell the daemon where the setuid wrapper around - # dbus-daemon-launch-helper lives. - sed -i $out/system.conf \ - -e 's|.*/libexec/dbus-daemon-launch-helper|${config.security.wrapperDir}/dbus-daemon-launch-helper|' - - # Add the system-services and system.d directories to the system - # bus search path. - sed -i $out/system.conf \ - -e 's||${systemServiceDirs}|' \ - -e 's|system.d|${systemIncludeDirs}|' + sed '${./dbus-system-local.conf.in}' \ + -e 's,@servicehelper@,${config.security.wrapperDir}/dbus-daemon-launch-helper,g' \ + -e 's,@extra@,${systemExtraxml},' \ + > "$out/system-local.conf" - cp ${pkgs.dbus.daemon}/etc/dbus-1/session.conf $out/session.conf - - # Add the services and session.d directories to the session bus - # search path. - sed -i $out/session.conf \ - -e 's||${sessionServiceDirs}&|' \ - -e 's|session.d|${sessionIncludeDirs}|' - ''; # */ + sed '${./dbus-session-local.conf.in}' \ + -e 's,@extra@,${sessionExtraxml},' \ + > "$out/session-local.conf" + ''; }; - systemServiceDirs = concatMapStrings - (d: "${d}/share/dbus-1/system-services ") - cfg.packages; - - systemIncludeDirs = concatMapStrings - (d: "${d}/etc/dbus-1/system.d ") - cfg.packages; - - sessionServiceDirs = concatMapStrings - (d: "${d}/share/dbus-1/services ") - cfg.packages; - - sessionIncludeDirs = concatMapStrings - (d: "${d}/etc/dbus-1/session.d ") - cfg.packages; - in { @@ -72,7 +52,7 @@ in enable = mkOption { type = types.bool; - default = true; + default = false; internal = true; description = '' Whether to start the D-Bus message bus daemon, which is @@ -82,7 +62,7 @@ in packages = mkOption { type = types.listOf types.path; - default = []; + default = [ ]; description = '' Packages whose D-Bus configuration files should be included in the configuration of the D-Bus system-wide message bus. @@ -129,10 +109,10 @@ in permissions = "u+rx,g+rx,o-rx"; }; - services.dbus.packages = - [ "/nix/var/nix/profiles/default" - config.system.path - ]; + services.dbus.packages = [ + pkgs.dbus + config.system.path + ]; # Don't restart dbus-daemon. Bad things tend to happen if we do. systemd.services.dbus.reloadIfChanged = true; diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index 3f497566ff117..e7f892945315a 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -689,6 +689,8 @@ in "systemd/system-generators" = { source = generators; }; }); + services.dbus.enable = true; + system.activationScripts.systemd = stringAfter [ "groups" ] '' mkdir -m 0755 -p /var/lib/udev -- cgit 1.4.1 From 4dc716115f93d11b4d65201a33542e095e85a168 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Sun, 6 Mar 2016 17:44:56 -0800 Subject: Add missing files (cherry picked from commit 5917fc2f50c87bbdd6ba0be339849a030a7eba10) --- nixos/modules/services/system/dbus-session-local.conf.in | 5 +++++ nixos/modules/services/system/dbus-system-local.conf.in | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 nixos/modules/services/system/dbus-session-local.conf.in create mode 100644 nixos/modules/services/system/dbus-system-local.conf.in diff --git a/nixos/modules/services/system/dbus-session-local.conf.in b/nixos/modules/services/system/dbus-session-local.conf.in new file mode 100644 index 0000000000000..5fd6f80a35397 --- /dev/null +++ b/nixos/modules/services/system/dbus-session-local.conf.in @@ -0,0 +1,5 @@ + + + @extra@ + diff --git a/nixos/modules/services/system/dbus-system-local.conf.in b/nixos/modules/services/system/dbus-system-local.conf.in new file mode 100644 index 0000000000000..edbb476f585a3 --- /dev/null +++ b/nixos/modules/services/system/dbus-system-local.conf.in @@ -0,0 +1,6 @@ + + + @servicehelper@ + @extra@ + -- cgit 1.4.1 From 6e353bb17f3ccd032d72c32a7b2e51fb86c80ccf Mon Sep 17 00:00:00 2001 From: Brad Ediger Date: Mon, 2 May 2016 15:42:09 -0500 Subject: ruby: update 2.3 series to 2.3.1 --- pkgs/development/interpreters/ruby/default.nix | 9 ++++----- pkgs/development/interpreters/ruby/patchsets.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 4 ++-- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix index 2ff960f6fcc6c..8db9dd4eaf9ab 100644 --- a/pkgs/development/interpreters/ruby/default.nix +++ b/pkgs/development/interpreters/ruby/default.nix @@ -206,15 +206,14 @@ in { }; }; - ruby_2_3_0 = generic { + ruby_2_3_1 = generic { majorVersion = "2"; minorVersion = "3"; - teenyVersion = "0"; + teenyVersion = "1"; patchLevel = "0"; sha256 = { - # src = "1ssq3c23ay57ypfis47y2n817hfmb71w0xrdzp57j6bv12jqmgrx"; - src = "01z5cya4a7y751d4pb3aak5qcwmmvnwkbgz9z171p8hsbw7acnxs"; - git = "0nl0pp96m0jxi422mqx09jqn9bff90pzz0xxa0ikrx7by0g00npg"; + src = "1kbxg72las93w0y553cxv3lymy2wvij3i3pg1y9g8aq3na676z5q"; + git = "0dv1rf5f9lj3icqs51bq7ljdcf17sdclmxm9hilwxps5l69v5q9r"; }; }; } diff --git a/pkgs/development/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix index ded72b8695ecb..0e81db4e047f7 100644 --- a/pkgs/development/interpreters/ruby/patchsets.nix +++ b/pkgs/development/interpreters/ruby/patchsets.nix @@ -54,9 +54,9 @@ rec { "${patchSet}/patches/ruby/2.2.3/railsexpress/02-improve-gc-stats.patch" "${patchSet}/patches/ruby/2.2.3/railsexpress/03-display-more-detailed-stack-trace.patch" ]; - "2.3.0" = ops useRailsExpress [ - "${patchSet}/patches/ruby/2.3.0/railsexpress/01-skip-broken-tests.patch" - "${patchSet}/patches/ruby/2.3.0/railsexpress/02-improve-gc-stats.patch" - "${patchSet}/patches/ruby/2.3.0/railsexpress/03-display-more-detailed-stack-trace.patch" + "2.3.1" = ops useRailsExpress [ + "${patchSet}/patches/ruby/2.3/head/railsexpress/01-skip-broken-tests.patch" + "${patchSet}/patches/ruby/2.3/head/railsexpress/02-improve-gc-stats.patch" + "${patchSet}/patches/ruby/2.3/head/railsexpress/03-display-more-detailed-stack-trace.patch" ]; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..1194651e0b6aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5593,7 +5593,7 @@ in ruby_2_0_0 ruby_2_1_7 ruby_2_2_3 - ruby_2_3_0; + ruby_2_3_1; # Ruby aliases ruby = ruby_2_3; @@ -5601,7 +5601,7 @@ in ruby_2_0 = ruby_2_0_0; ruby_2_1 = ruby_2_1_7; ruby_2_2 = ruby_2_2_3; - ruby_2_3 = ruby_2_3_0; + ruby_2_3 = ruby_2_3_1; scsh = callPackage ../development/interpreters/scsh { }; -- cgit 1.4.1 From 57d9fd8f651c6ea408e5d982bb6a2a7a59a991ce Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 2 May 2016 23:28:32 +0200 Subject: linuxband: init at 12.02.1 --- pkgs/applications/audio/linuxband/default.nix | 34 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/audio/linuxband/default.nix diff --git a/pkgs/applications/audio/linuxband/default.nix b/pkgs/applications/audio/linuxband/default.nix new file mode 100644 index 0000000000000..a3aa133960f84 --- /dev/null +++ b/pkgs/applications/audio/linuxband/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, makeWrapper, pkgconfig, MMA, libjack2, libsmf, python, pyGtkGlade, pygtksourceview }: + +stdenv.mkDerivation rec { + version = "12.02.1"; + name = "linuxband-${version}"; + + src = fetchurl { + url = "http://linuxband.org/assets/sources/${name}.tar.gz"; + sha256 = "1r71h4yg775m4gax4irrvygmrsclgn503ykmc2qwjsxa42ri4n2n"; + }; + + buildInputs = [ makeWrapper pkgconfig MMA libjack2 libsmf python pyGtkGlade pygtksourceview ]; + + patchPhase = '' + sed -i 's@/usr/@${MMA}/@g' src/main/config/linuxband.rc.in + cat src/main/config/linuxband.rc.in + ''; + + postFixup = '' + PYTHONPATH=$pyGtkGlade/share/:pygtksourceview/share/:$PYTHONPATH + for f in $out/bin/*; do + wrapProgram $f \ + --prefix PYTHONPATH : $PYTHONPATH + done + ''; + + meta = { + description = "A GUI front-end for MMA: Type in the chords, choose the groove and it will play an accompaniment"; + homepage = http://linuxband.org/; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..d137f6e67ff6c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10003,7 +10003,7 @@ in }; rake = callPackage ../development/tools/build-managers/rake { }; - + redis = callPackage ../servers/nosql/redis { }; redstore = callPackage ../servers/http/redstore { }; @@ -13087,6 +13087,8 @@ in inherit (gnome) libglade; }; + linuxband = callPackage ../applications/audio/linuxband { }; + ledger2 = callPackage ../applications/office/ledger/2.6.3.nix { }; ledger3 = callPackage ../applications/office/ledger { boost = boost155; -- cgit 1.4.1 From bc4465e23f1c63e8b1165fb1c3c59699bc62bc34 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 14:06:08 +0200 Subject: pythonPackages.sqlparse: 0.1.16 -> 0.1.18 --- 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 c85b1ca25088b..e664ab56703c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -21100,14 +21100,14 @@ in modules // { sqlparse = buildPythonPackage rec { name = "sqlparse-${version}"; - version = "0.1.16"; + version = "0.1.18"; # the source wasn't transformed with 2to3 yet doCheck = !isPy3k; src = pkgs.fetchurl { url = "mirror://pypi/s/sqlparse/${name}.tar.gz"; - sha256 = "108gy82x7davjrn3jqn7yv4r5v4jrzp892ysfx8l00abr8v6r337"; + sha256 = "1kypl9l2nkzy3pmr89mvpfl65xk1m5y4aaghhandcxkgl329dc9r"; }; meta = { -- cgit 1.4.1 From 6b6463dbd26397b932b473c076471fcb244d148e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 17:31:07 +0200 Subject: dpkg: 1.18.4 -> 1.18.5 --- pkgs/tools/package-management/dpkg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index ad351914cb3bf..bc07f3e536f58 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "dpkg-${version}"; - version = "1.18.4"; + version = "1.18.5"; src = fetchurl { url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; - sha256 = "1nh6y6xvnq6f4qd6y3dx9m77sxjg4qk1z1j5pwayg348d0w292gy"; + sha256 = "01wb8qa4vv2dpd1gv5bm0qzgzb35wn5ij7daqd7b3977l5k6lkh7"; }; postPatch = '' -- cgit 1.4.1 From d6c3407f7b4b9780418e60519a4a511aa562f46d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 2 May 2016 18:07:32 +0200 Subject: btrfs-progs: 4.5.1 -> 4.5.2 --- pkgs/tools/filesystems/btrfs-progs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index d0fda2da4142f..e88c0088ef3c6 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.5.1"; in +let version = "4.5.2"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "1znf2zhb56zbmdjk3lq107678xwsqwc5gczspypmc5i31qnppy7f"; + sha256 = "09qjz3idz8y3rlrb0sxshc1bnpmrr4v9lqg5aimp09i9ywa8kyxf"; }; buildInputs = [ -- cgit 1.4.1 From 69ef7566a8b4a63cdc4380da37ed9088a1298b60 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 02:00:39 +0200 Subject: wireless-regdb: 2016-02-08 -> 2016-05-02 --- pkgs/data/misc/wireless-regdb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix index 3c74123d605eb..37488c550d098 100644 --- a/pkgs/data/misc/wireless-regdb/default.nix +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "wireless-regdb-${version}"; - version = "2016-02-08"; + version = "2016-05-02"; src = fetchgit { - sha256 = "0cqnkkcni27ya6apy2ba4im7xj4nrhbcgrahlarvrzbbjkp740m9"; + sha256 = "04vqhhqm307bx63ihmli751r15b5vrp3011rj1addlkya56wflby"; url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git; rev = "refs/tags/master-${version}"; }; -- cgit 1.4.1 From 84bf43a702026ec02355379490ef881a4ee75af5 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 3 May 2016 00:17:45 +0000 Subject: openjdk: 8u76 -> 8u92 --- pkgs/development/compilers/openjdk/8.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 7ba6b56a8f38c..0eb427754b38b 100644 --- a/pkgs/development/compilers/openjdk/8.nix +++ b/pkgs/development/compilers/openjdk/8.nix @@ -18,42 +18,42 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "76"; - build = "00"; + update = "92"; + build = "14"; baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u"; repover = "jdk8u${update}-b${build}"; paxflags = if stdenv.isi686 then "msp" else "m"; jdk8 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "1bzwrm18vdd531xxin7pzsc5dx2ybkdgdxz6jp2ki19ka6pmk1l7"; + sha256 = "05ly2v3b6vr3sxa27m7ahlp8w4w1q68rki2dfczrklcdq4l61g0r"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "044gyb7hgrahlr78vah9r3wfv6w569ihqzwqplwzr6m0l1s52994"; + sha256 = "1zb7gvj1b1q3pvq5x7ac98k5dk83m7849ngcy1swfwj18g8i4k9p"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "1if70s9wjsvmrdj92ky88ngpmigi9c5gfpkilpydzdibs38f05f8"; + sha256 = "057qrhm9gbz672qgb85al9p3qvgvbviadppf5a9b8hp5sg322f35"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "0fl852x25cjzz3lrhjnhj59qbb4m3ywwc2f9vbj6mqdnpzl7cg83"; + sha256 = "0s9h61jw42nbvrw24qaizp7pp063ala37sjgl547zfglhk1dlzi8"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "11ql3p5fsizrn1fiylfkgrw0lgf6snwyich18hggsmd00bhvv3ah"; + sha256 = "0sgyjdmxsrdj8b8y2ri3c70x9l9m777v559cq8rmaz1jpc9lld4s"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "1d2q4bbvlz557caqciwpd5ms9f14bjk8jl5zlfflqnww9b097qy4"; + sha256 = "12aajlswn5nkm4nbrdh3jff2sz81wdczrgliwd5lnqfnh73sbbkp"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "0nrd4c77ggxkyv2271k30afbjjcp0kybc8gcypmhy8by54w4ap0j"; + sha256 = "133r5wicgva6mklrlnvb09p9izyw0fj281s51kndf3ba3zzggvv3"; }; nashorn = fetchurl { url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; - sha256 = "11idvkzk4nqhhw4xq5pl03g4gwnaiq021xxj2yx54rixr59zl0q6"; + sha256 = "1rmk868qg7kgv7f5lhj1b7wdnql0bj2bfqd2lg9ci64418j8x8bn"; }; openjdk8 = stdenv.mkDerivation { name = "openjdk-8u${update}b${build}"; -- cgit 1.4.1 From 8536d8b4ed935e48ec5d6b4b1f22b0ff2b79f6b8 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 3 May 2016 01:39:46 +0100 Subject: tcpflow: 1.4.5 -> 1.4.6 (#15151) Switch to fetchFromGitHub as website does not have latest version. Default to not building against cairo to avoid dependencies on lots of graphic libraries for a predominently command-line application. --- pkgs/tools/networking/tcpflow/default.nix | 80 +++++++++++++++++++++---------- 1 file changed, 56 insertions(+), 24 deletions(-) diff --git a/pkgs/tools/networking/tcpflow/default.nix b/pkgs/tools/networking/tcpflow/default.nix index 935251ba05797..52727f1c49e74 100644 --- a/pkgs/tools/networking/tcpflow/default.nix +++ b/pkgs/tools/networking/tcpflow/default.nix @@ -1,29 +1,61 @@ -{stdenv, fetchurl, openssl, zlib, libpcap, boost, cairo}: -let - s = # Generated upstream information - rec { - baseName="tcpflow"; - version="1.4.5"; - name="${baseName}-${version}"; - hash="0whcyykq710s84jyiaqp6rsr19prd0pr1g1pg74mif0ig51yv7zk"; - url="http://www.digitalcorpora.org/downloads/tcpflow/tcpflow-1.4.5.tar.gz"; - sha256="0whcyykq710s84jyiaqp6rsr19prd0pr1g1pg74mif0ig51yv7zk"; +{ stdenv, lib, fetchFromGitHub, openssl, zlib, libpcap, boost, cairo, automake, autoconf, useCairo ? false }: + +stdenv.mkDerivation rec { + baseName = "tcpflow"; + version = "1.4.6"; + name = "${baseName}-${version}"; + + src = fetchFromGitHub { + owner = "simsong"; + repo = "tcpflow"; + rev = "017687365b8233d16260f4afd7572c8ad8873cf6"; + sha256 = "002cqmn786sjysf59xnbb7lgr23nqqslb2gvy29q2xpnq6my9w38"; }; - buildInputs = [ - openssl zlib libpcap boost cairo - ]; -in -stdenv.mkDerivation { - inherit (s) name version; - inherit buildInputs; - src = fetchurl { - inherit (s) url sha256; + + be13_api = fetchFromGitHub { + owner = "simsong"; + repo = "be13_api"; + rev = "8f4f4b3fe0b4815babb3a6fb595eb9a6d07e8a2e"; + sha256 = "1dlys702x3m8cr9kf4b9j8n28yh6knhwgqkm6a5yhh1grd8r3ksm"; }; - meta = { - inherit (s) version; + + dfxml = fetchFromGitHub { + owner = "simsong"; + repo = "dfxml"; + rev = "13a8cc22189a8336d16777f2897ada6ae2ee59de"; + sha256 = "0wzhbkp4c8sp6wrk4ilz3skxp14scdnm3mw2xmxxrsifymzs2f5n"; + }; + + httpparser = fetchFromGitHub { + owner = "nodejs"; + repo = "http-parser"; + rev = "8d9e5db981b623fffc93657abacdc80270cbee58"; + sha256 = "0x17wwhrc7b2ngiqy0clnzn1zz2gbcz5n9m29pcyrcplly782k52"; + }; + + buildInputs = [ openssl zlib libpcap boost automake autoconf ] ++ lib.optional useCairo cairo; + + postUnpack = '' + pushd tcpflow-*-src/src + cp -rv ${be13_api}/* be13_api/ + cp -rv ${dfxml}/* dfxml/ + cp -rv ${httpparser}/* http-parser/ + chmod -R u+w dfxml + popd + ''; + + prePatch = '' + substituteInPlace ./bootstrap.sh \ + --replace \ git 'echo git' \ + --replace /bin/rm rm + ''; + + preConfigure = "bash ./bootstrap.sh"; + + meta = with stdenv.lib; { description = ''TCP stream extractor''; - license = stdenv.lib.licenses.gpl3 ; - maintainers = [stdenv.lib.maintainers.raskin]; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl3 ; + maintainers = with maintainers; [ raskin obadz ]; + platforms = platforms.linux; }; } -- cgit 1.4.1 From 21b667e066400ed91b40ffa00ce5b451a967f866 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 02:42:41 +0200 Subject: rescuetime: 2.8.9.1170 -> 2.9.10.1255 --- pkgs/applications/misc/rescuetime/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index a5b90890df2ac..b74d2716f9849 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -5,18 +5,18 @@ let if stdenv.system == "i686-linux" then fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb"; - sha256 = "15x3nvhxk4f0rga0i99c6lhaa1rwdi446kxnx1l4jprhbl788sx6"; + sha256 = "1wi9ikwmc9jfilj8adad3rcb7rmmxkpkfcp2gkfxvdyw6n0mzcnf"; } else fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_amd64.deb"; - sha256 = "0ibdlx8fdlmh81908d1syb7c5lf88pqp49fl7r43cj6bybpdx411"; + sha256 = "074yivz7rz1ac1962dix0aahpyqvsrkizh32kk5hyw5az0vqpcjs"; }; in stdenv.mkDerivation { # https://www.rescuetime.com/updates/linux_release_notes.html - name = "rescuetime-2.8.9.1170"; + name = "rescuetime-2.9.10.1255"; inherit src; buildInputs = [ dpkg makeWrapper ]; unpackPhase = '' -- cgit 1.4.1 From 5d25d7d9876d34f843e5ab6b727e04551ae04ca7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:01:45 +0200 Subject: rescuetime: use makeLibraryPath for LD_PRELOAD hack --- pkgs/applications/misc/rescuetime/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index b74d2716f9849..974c593d37c4a 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -24,7 +24,11 @@ stdenv.mkDerivation { dpkg-deb -x $src pkg sourceRoot=pkg ''; - installPhase = '' + installPhase = let + + lib = p: stdenv.lib.makeLibraryPath [ p ]; + + in '' mkdir -p $out/bin cp usr/bin/rescuetime $out/bin @@ -33,7 +37,7 @@ stdenv.mkDerivation { $out/bin/rescuetime wrapProgram $out/bin/rescuetime \ - --prefix LD_PRELOAD : ${qt4}/lib/libQtGui.so.4:${qt4}/lib/libQtCore.so.4:${libXtst}/lib/libXtst.so.6:${libXext}/lib/libXext.so.6:${libX11}/lib/libX11.so.6:${libXScrnSaver}/lib/libXss.so.1 + --prefix LD_PRELOAD : ${lib qt4}/libQtGui.so.4:${lib qt4}/libQtCore.so.4:${lib libXtst}/libXtst.so.6:${lib libXext}/libXext.so.6:${lib libX11}/libX11.so.6:${lib libXScrnSaver}/libXss.so.1 ''; meta = with lib; { description = "Helps you understand your daily habits so you can focus and be more productive"; -- cgit 1.4.1 From 78c500a8d1f3dc8220c199d3357e0c0cac48db71 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:29:34 +0200 Subject: perlPackages.PerlIO-eol: 0.14 -> 0.16 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 08b6ccd49d702..5f29264b29d32 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9637,11 +9637,11 @@ let self = _self // overrides; _self = with self; { }; }; - PerlIOeol = buildPerlPackage { - name = "PerlIO-eol-0.14"; + PerlIOeol = buildPerlPackage rec { + name = "PerlIO-eol-0.16"; src = fetchurl { - url = mirror://cpan/authors/id/A/AU/AUDREYT/PerlIO-eol-0.14.tar.gz; - sha256 = "1rwj0r075jfvvd0fnzgdqldc7qdb94wwsi21rs2l6yhcv0380fs2"; + url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz"; + sha256 = "159zrrf44469sjklsi0pb4c005q74d9242q7mqawvbwnxjqbh0a5"; }; }; -- cgit 1.4.1 From b2ea81bd0f7e3a8c70f846502e54f3a01f628bbf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:30:27 +0200 Subject: perlPackages.threads: 2.02 -> 2.07 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 5f29264b29d32..3b58f0fcdc141 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13047,10 +13047,10 @@ let self = _self // overrides; _self = with self; { }; threads = buildPerlPackage rec { - name = "threads-2.02"; + name = "threads-2.07"; src = fetchurl { url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; - sha256 = "0vij8lagq4x6gv88x9gg23jd7i0s5fyyzs2wrxacih2ppj6kkiff"; + sha256 = "0fgprp2ghrh1ryxmr0y9bpsjl1ifbf4lqml8k017cbl4zbn21lim"; }; meta = { description = "Perl interpreter-based threads"; -- cgit 1.4.1 From 15af160ec021bae8603d57416836bbf09186ad9e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:30:56 +0200 Subject: perlPackages.threads-shared: 1.48 -> 1.51 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3b58f0fcdc141..45a4eb5a1f385 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13058,11 +13058,11 @@ let self = _self // overrides; _self = with self; { }; }; - threadsshared = buildPerlPackage { - name = "threads-shared-1.48"; + threadsshared = buildPerlPackage rec { + name = "threads-shared-1.51"; src = fetchurl { - url = mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-shared-1.48.tar.gz; - sha256 = "7378a72bae424705e354476da69995fb8f62432bca8e98eab0fb9842da5120f8"; + url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; + sha256 = "0qsbl8rx8p09cb5vj1yhwf1h2awvimfyckw1qwrqbk7dxjldrimn"; }; meta = { description = "Perl extension for sharing data structures between threads"; -- cgit 1.4.1 From 41de2cacb895e1a8c40a0d0162b1e8bd276d673d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:31:25 +0200 Subject: perlPackages.Thread-Queue: 3.05 -> 3.09 --- pkgs/top-level/perl-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 45a4eb5a1f385..ef9207f14afa1 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -13070,11 +13070,11 @@ let self = _self // overrides; _self = with self; { }; }; - ThreadQueue = buildPerlPackage { - name = "Thread-Queue-3.05"; + ThreadQueue = buildPerlPackage rec { + name = "Thread-Queue-3.09"; src = fetchurl { - url = mirror://cpan/authors/id/J/JD/JDHEDDEN/Thread-Queue-3.05.tar.gz; - sha256 = "36bc1e50b5de47ff827fbaa1d7f028016e3ef115972cac84ed8cd73a0ef95300"; + url = "mirror://cpan/authors/id/J/JD/JDHEDDEN/${name}.tar.gz"; + sha256 = "0f03v10rsasi2j4lh8xw44jac8nfbw66274qgsz5lsmfd6wqvj12"; }; meta = { description = "Thread-safe queues"; -- cgit 1.4.1 From 95aab50e81012f58901682bb7d40183baada4176 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 03:50:13 +0200 Subject: efivar: 0.21 -> 0.23 --- pkgs/tools/system/efivar/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/system/efivar/default.nix b/pkgs/tools/system/efivar/default.nix index a9c3ebd025221..b4da2044f6940 100644 --- a/pkgs/tools/system/efivar/default.nix +++ b/pkgs/tools/system/efivar/default.nix @@ -1,21 +1,21 @@ -{ stdenv, fetchFromGitHub, popt }: +{ stdenv, fetchFromGitHub, pkgconfig, popt }: stdenv.mkDerivation rec { name = "efivar-${version}"; - version = "0.21"; + version = "0.23"; src = fetchFromGitHub { owner = "rhinstaller"; repo = "efivar"; rev = version; - sha256 = "0iakv8prvl61mb2wnll02sxlg3kfzh3d4qb41d0bklmnljjkqr8p"; + sha256 = "1fdqi053v335pjwj1i3yi9f1kasdzg3agfcp36bxsbhqjp4imlid"; }; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ popt ]; - # 0.21 Has build warnings so disable -Werror postPatch = '' - sed -i 's,-Werror,,g' Make.defaults + substituteInPlace src/Makefile --replace "-static" "" ''; installFlags = [ @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { - homepage = http://github.com/vathpela/efivar; + inherit (src.meta) homepage; description = "Tools and library to manipulate EFI variables"; platforms = platforms.linux; license = licenses.lgpl21; -- cgit 1.4.1 From 9c7f71cd618b8ca7b97e130bf01d526730faa5b2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:00:25 +0200 Subject: unarj: 2.63a -> 2.65 --- pkgs/tools/archivers/unarj/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/archivers/unarj/default.nix b/pkgs/tools/archivers/unarj/default.nix index 546f398bec3a0..c8e4e92a404be 100644 --- a/pkgs/tools/archivers/unarj/default.nix +++ b/pkgs/tools/archivers/unarj/default.nix @@ -1,11 +1,12 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "unarj-2.63a"; + name = "unarj-${version}"; + version = "2.65"; src = fetchurl { - url = http://www.ibiblio.org/pub/Linux/utils/compress/unarj-2.63a.tar.gz; - sha256 = "0j4sn57fq2p23pcq4ck06pm618q4vq09wgm89ilfn4c9l9x2ky1k"; + sha256 = "0r027z7a0azrd5k885xvwhrxicpd0ah57jzmaqlypxha2qjw7p6p"; + url = "http://pkgs.fedoraproject.org/repo/pkgs/unarj/${name}.tar.gz/c6fe45db1741f97155c7def322aa74aa/${name}.tar.gz"; }; preInstall = '' -- cgit 1.4.1 From 7a595cdfc308b85bbc49e5f318a0809fe734c5f6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:11:44 +0200 Subject: libpwquality: 1.2.3 -> 1.3.0 --- pkgs/development/libraries/libpwquality/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpwquality/default.nix b/pkgs/development/libraries/libpwquality/default.nix index aaa39783fa724..fa272f2ec6f19 100644 --- a/pkgs/development/libraries/libpwquality/default.nix +++ b/pkgs/development/libraries/libpwquality/default.nix @@ -1,11 +1,12 @@ -{ stdenv, cracklib, fetchurl, python }: +{ stdenv, fetchurl, cracklib, python }: stdenv.mkDerivation rec { - name = "libpwquality-1.2.3"; + name = "libpwquality-${version}"; + version = "1.3.0"; src = fetchurl { url = "https://fedorahosted.org/releases/l/i/libpwquality/${name}.tar.bz2"; - sha256 = "0sjiabvl5277nfxyy96jdz65a0a3pmkkwrfbziwgik83gg77j75i"; + sha256 = "0aidriag6h0syfm33nzdfdsqgrnsgihwjv3a5lgkqch3w68fmlkl"; }; buildInputs = [ cracklib python ]; -- cgit 1.4.1 From 49fd7d9d086483bf83911fbf292bd2f229c2ff21 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:21:44 +0200 Subject: autoconf-archive: 2015.09.25 -> 2016.03.20 --- pkgs/development/tools/misc/autoconf-archive/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/autoconf-archive/default.nix b/pkgs/development/tools/misc/autoconf-archive/default.nix index 31bd4fb1c4338..70dccdcd626f6 100644 --- a/pkgs/development/tools/misc/autoconf-archive/default.nix +++ b/pkgs/development/tools/misc/autoconf-archive/default.nix @@ -1,12 +1,14 @@ { stdenv, fetchurl, xz }: + stdenv.mkDerivation rec { name = "autoconf-archive-${version}"; - version = "2015.09.25"; + version = "2016.03.20"; src = fetchurl { url = "mirror://gnu/autoconf-archive/autoconf-archive-${version}.tar.xz"; - sha256 = "02im1jn0igzn2qpxkgiwxvcm3jgvjaypg955pi9h2d6jvfjnf13w"; + sha256 = "0dz4fnc723jqn3by22ds5fys7g31apzm1r9allldvva0yvzjxyw8"; }; + buildInputs = [ xz ]; meta = with stdenv.lib; { -- cgit 1.4.1 From 078f14e058df0abd27957d86548e8602c1df94e3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:31:20 +0200 Subject: hicolor_icon_theme: 0.14 -> 0.15 --- pkgs/data/icons/hicolor-icon-theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/icons/hicolor-icon-theme/default.nix b/pkgs/data/icons/hicolor-icon-theme/default.nix index a0c9920177d73..5d08931544809 100644 --- a/pkgs/data/icons/hicolor-icon-theme/default.nix +++ b/pkgs/data/icons/hicolor-icon-theme/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "hicolor-icon-theme-0.14"; + name = "hicolor-icon-theme-0.15"; src = fetchurl { url = "http://icon-theme.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1k9fj0lb9b44inb5q5m04910x5nfkzrxl3ys9ckihqrixzk0dvbv"; + sha256 = "1k1kf2c5zbqh31nglc3nxs9j6wr083k9kjyql8p22ccc671mmi4w"; }; setupHook = ./setup-hook.sh; -- cgit 1.4.1 From be3d012da424d4efb2e3d23a0f7a4559377397a6 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 04:33:49 +0200 Subject: highlight: 3.18 -> 3.28 --- pkgs/tools/text/highlight/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index debf862672ce1..81995705b523b 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, getopt, lua, boost, pkgconfig }: stdenv.mkDerivation rec { - name = "highlight-3.18"; + name = "highlight-${version}"; + version = "3.28"; src = fetchurl { url = "http://www.andre-simon.de/zip/${name}.tar.bz2"; - sha256 = "0jsq78qb75sawwggbpx5pdqxk00wgjr1a0la0w8wihmamsjzgijm"; + sha256 = "1kg73isgz3czb1k6ccajqzifahr3zs9ci8168k0dlj31j1nlndin"; }; buildInputs = [ getopt lua boost pkgconfig ]; -- cgit 1.4.1 From 19ce448380af5dfc5f8254ca0470807c543fdca7 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 2 May 2016 22:57:45 +0200 Subject: bind: 9.10.3-P4 -> 9.10.4 --- pkgs/servers/dns/bind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 61ca93184dd6d..ac96b3c353aae 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, openssl, libtool, perl, libxml2 }: -let version = "9.10.3-P4"; in +let version = "9.10.4"; in stdenv.mkDerivation rec { name = "bind-${version}"; src = fetchurl { url = "http://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "0giys46ifypysf799w9v58kbaz1v3fbdzw3s212znifzzfsl9h1a"; + sha256 = "0mmhzi4483mkak47wj255a36g3v0yilxwfwlbckr1hssinri5m7q"; }; patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; -- cgit 1.4.1 From 5be72c23eadfcd8c459a43a828389c8bf0d893b2 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Mon, 2 May 2016 23:09:27 +0200 Subject: bind: LibreSSL compatibility added upstream --- pkgs/servers/dns/bind/default.nix | 2 +- pkgs/servers/dns/bind/libressl.patch | 102 ----------------------------------- 2 files changed, 1 insertion(+), 103 deletions(-) delete mode 100644 pkgs/servers/dns/bind/libressl.patch diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index ac96b3c353aae..a92da7f35ed37 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "0mmhzi4483mkak47wj255a36g3v0yilxwfwlbckr1hssinri5m7q"; }; - patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; + patches = [ ./remove-mkdir-var.patch ]; buildInputs = [ openssl libtool perl libxml2 ]; diff --git a/pkgs/servers/dns/bind/libressl.patch b/pkgs/servers/dns/bind/libressl.patch deleted file mode 100644 index b77f24ee429a8..0000000000000 --- a/pkgs/servers/dns/bind/libressl.patch +++ /dev/null @@ -1,102 +0,0 @@ -$OpenBSD: patch-lib_dns_openssl_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ ---- a/lib/dns/openssl_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssl_link.c Wed Sep 16 14:01:46 2015 -@@ -88,7 +88,7 @@ entropy_getpseudo(unsigned char *buf, int num) { - return (result == ISC_R_SUCCESS ? 1 : -1); - } - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - static void - entropy_add(const void *buf, int num, double entropy) { - /* -@@ -121,7 +121,7 @@ lock_callback(int mode, int type, const char *file, in - UNLOCK(&locks[type]); - } - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - static unsigned long - id_callback(void) { - return ((unsigned long)isc_thread_self()); -@@ -187,7 +187,7 @@ dst__openssl_init(const char *engine) { - if (result != ISC_R_SUCCESS) - goto cleanup_mutexalloc; - CRYPTO_set_locking_callback(lock_callback); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - CRYPTO_set_id_callback(id_callback); - #endif - -@@ -287,7 +287,7 @@ dst__openssl_destroy(void) { - CRYPTO_cleanup_all_ex_data(); - #endif - ERR_clear_error(); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - ERR_remove_state(0); - #endif - ERR_free_strings(); ---- a/lib/dns/dst_openssl.h Wed Sep 16 14:00:47 2015 -+++ b/lib/dns/dst_openssl.h Wed Sep 16 14:02:42 2015 -@@ -36,7 +36,7 @@ - #define USE_ENGINE 1 - #endif - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - /* - * These are new in OpenSSL 1.1.0. BN_GENCB _cb needs to be declared in - * the function like this before the BN_GENCB_new call: ---- a/lib/dns/openssldh_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssldh_link.c Wed Sep 16 14:02:06 2015 -@@ -173,7 +173,7 @@ openssldh_generate(dst_key_t *key, int generator, void - DH *dh = NULL; - #if OPENSSL_VERSION_NUMBER > 0x00908000L - BN_GENCB *cb; --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - union { -@@ -210,7 +210,7 @@ openssldh_generate(dst_key_t *key, int generator, void - if (dh == NULL) - return (dst__openssl_toresult(ISC_R_NOMEMORY)); - cb = BN_GENCB_new(); --#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) - if (cb == NULL) { - DH_free(dh); - return (dst__openssl_toresult(ISC_R_NOMEMORY)); ---- a/lib/dns/openssldsa_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/openssldsa_link.c Wed Sep 16 14:02:22 2015 -@@ -359,7 +359,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( - isc_result_t result; - #if OPENSSL_VERSION_NUMBER > 0x00908000L - BN_GENCB *cb; --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - union { -@@ -383,7 +383,7 @@ openssldsa_generate(dst_key_t *key, int unused, void ( - if (dsa == NULL) - return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); - cb = BN_GENCB_new(); --#if OPENSSL_VERSION_NUMBER >= 0x10100000L -+#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER) - if (cb == NULL) { - DSA_free(dsa); - return (dst__openssl_toresult(DST_R_OPENSSLFAILURE)); -$OpenBSD: patch-lib_dns_opensslrsa_link_c,v 1.1 2015/09/16 15:28:16 sthen Exp $ ---- a/lib/dns/opensslrsa_link.c Wed Sep 16 14:01:23 2015 -+++ b/lib/dns/opensslrsa_link.c Wed Sep 16 14:02:31 2015 -@@ -771,7 +771,7 @@ opensslrsa_generate(dst_key_t *key, int exp, void (*ca - } u; - RSA *rsa = RSA_new(); - BIGNUM *e = BN_new(); --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - BN_GENCB _cb; - #endif - BN_GENCB *cb = BN_GENCB_new(); -- cgit 1.4.1 From 6ca5c3667b68ed6a7f11a68201ef59730179c3e9 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 08:59:18 +0200 Subject: kde: cleanup from closure-size merge (#15179) part of 98d8e1a160d3138e9ef3a51f727b04315ab9e285 and 7049bde4d5ffc9475eab99c490e6c35d71eb1534 got lost --- .../kde-5/frameworks-5.19/kdelibs4support.nix | 32 -- .../libraries/kde-frameworks-5.19/attica.nix | 11 - .../libraries/kde-frameworks-5.19/baloo.nix | 25 - .../libraries/kde-frameworks-5.19/bluez-qt.nix | 17 - .../libraries/kde-frameworks-5.19/breeze-icons.nix | 10 - .../libraries/kde-frameworks-5.19/default.nix | 114 ----- .../extra-cmake-modules/default.nix | 20 - .../extra-cmake-modules/nix-lib-path.patch | 37 -- .../kde-frameworks-5.19/extra-cmake-modules/series | 1 - .../extra-cmake-modules/setup-hook.sh | 81 --- .../libraries/kde-frameworks-5.19/fetchsrcs.sh | 57 --- .../kde-frameworks-5.19/frameworkintegration.nix | 17 - .../libraries/kde-frameworks-5.19/kactivities.nix | 22 - .../libraries/kde-frameworks-5.19/kapidox.nix | 12 - .../libraries/kde-frameworks-5.19/karchive.nix | 11 - .../kauth/cmake-install-paths.patch | 17 - .../kde-frameworks-5.19/kauth/default.nix | 16 - .../libraries/kde-frameworks-5.19/kauth/series | 1 - .../libraries/kde-frameworks-5.19/kbookmarks.nix | 25 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.19/kcmutils/default.nix | 17 - .../libraries/kde-frameworks-5.19/kcodecs.nix | 11 - .../libraries/kde-frameworks-5.19/kcompletion.nix | 14 - .../libraries/kde-frameworks-5.19/kconfig.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kde-frameworks-5.19/kconfigwidgets/default.nix | 17 - .../libraries/kde-frameworks-5.19/kcoreaddons.nix | 16 - .../libraries/kde-frameworks-5.19/kcrash.nix | 16 - .../libraries/kde-frameworks-5.19/kdbusaddons.nix | 17 - .../libraries/kde-frameworks-5.19/kdeclarative.nix | 22 - .../libraries/kde-frameworks-5.19/kded.nix | 19 - .../kdelibs4support/default.nix | 36 -- .../kdelibs4support/nix-kde-include-dir.patch | 13 - .../kde-frameworks-5.19/kdelibs4support/series | 1 - .../kdelibs4support/setup-hook.sh | 1 - .../kde-frameworks-5.19/kdesignerplugin.nix | 34 -- .../libraries/kde-frameworks-5.19/kdesu.nix | 13 - .../libraries/kde-frameworks-5.19/kdewebkit.nix | 13 - .../libraries/kde-frameworks-5.19/kdnssd.nix | 13 - .../kde-frameworks-5.19/kdoctools/default.nix | 19 - .../kdoctools/kdoctools-no-find-docbook-xml.patch | 12 - .../libraries/kde-frameworks-5.19/kemoticons.nix | 17 - .../kfilemetadata/cmake-install-paths.patch | 13 - .../kde-frameworks-5.19/kfilemetadata/default.nix | 14 - .../kde-frameworks-5.19/kfilemetadata/series | 1 - .../libraries/kde-frameworks-5.19/kglobalaccel.nix | 23 - .../libraries/kde-frameworks-5.19/kguiaddons.nix | 13 - .../libraries/kde-frameworks-5.19/khtml.nix | 21 - .../libraries/kde-frameworks-5.19/ki18n.nix | 17 - .../kiconthemes/default-theme-breeze.patch | 13 - .../kde-frameworks-5.19/kiconthemes/default.nix | 18 - .../kde-frameworks-5.19/kiconthemes/series | 1 - .../libraries/kde-frameworks-5.19/kidletime.nix | 15 - .../kde-frameworks-5.19/kimageformats.nix | 13 - .../kinit/0001-kinit-libpath.patch | 42 -- .../kde-frameworks-5.19/kinit/default.nix | 17 - .../libraries/kde-frameworks-5.19/kio/default.nix | 33 -- .../kio/samba-search-path.patch | 28 - .../libraries/kde-frameworks-5.19/kio/series | 1 - .../libraries/kde-frameworks-5.19/kitemmodels.nix | 11 - .../libraries/kde-frameworks-5.19/kitemviews.nix | 11 - .../libraries/kde-frameworks-5.19/kjobwidgets.nix | 16 - .../libraries/kde-frameworks-5.19/kjs.nix | 16 - .../libraries/kde-frameworks-5.19/kjsembed.nix | 17 - .../libraries/kde-frameworks-5.19/kmediaplayer.nix | 15 - .../libraries/kde-frameworks-5.19/knewstuff.nix | 17 - .../kde-frameworks-5.19/knotifications.nix | 21 - .../kde-frameworks-5.19/knotifyconfig.nix | 13 - .../kpackage/allow-external-paths.patch | 13 - .../kde-frameworks-5.19/kpackage/default.nix | 23 - .../kpackage/qdiriterator-follow-symlinks.patch | 26 - .../libraries/kde-frameworks-5.19/kpackage/series | 2 - .../libraries/kde-frameworks-5.19/kparts.nix | 17 - .../libraries/kde-frameworks-5.19/kpeople.nix | 15 - .../libraries/kde-frameworks-5.19/kplotting.nix | 11 - .../libraries/kde-frameworks-5.19/kpty.nix | 10 - .../libraries/kde-frameworks-5.19/kross.nix | 14 - .../libraries/kde-frameworks-5.19/krunner.nix | 16 - .../0001-qdiriterator-follow-symlinks.patch | 25 - .../kservice/0002-no-canonicalize-path.patch | 25 - .../kde-frameworks-5.19/kservice/default.nix | 18 - .../kde-frameworks-5.19/ktexteditor/default.nix | 22 - .../ktexteditor/no-qcoreapplication.patch | 36 -- .../kde-frameworks-5.19/ktexteditor/series | 1 - .../libraries/kde-frameworks-5.19/ktextwidgets.nix | 16 - .../kde-frameworks-5.19/kunitconversion.nix | 10 - .../libraries/kde-frameworks-5.19/kwallet.nix | 21 - .../kde-frameworks-5.19/kwidgetsaddons.nix | 11 - .../kde-frameworks-5.19/kwindowsystem.nix | 13 - .../libraries/kde-frameworks-5.19/kxmlgui.nix | 18 - .../kde-frameworks-5.19/kxmlrpcclient.nix | 10 - .../kde-frameworks-5.19/modemmanager-qt.nix | 13 - .../kde-frameworks-5.19/networkmanager-qt.nix | 13 - .../kde-frameworks-5.19/oxygen-icons5.nix | 13 - .../plasma-framework/default.nix | 25 - .../libraries/kde-frameworks-5.19/solid.nix | 17 - .../libraries/kde-frameworks-5.19/sonnet.nix | 13 - .../libraries/kde-frameworks-5.19/srcs.nix | 565 --------------------- .../libraries/kde-frameworks-5.19/threadweaver.nix | 11 - 99 files changed, 2376 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/attica.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/baloo.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh delete mode 100755 pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/karchive.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kauth/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kded.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/khtml.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kio/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpackage/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kparts.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kpty.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kross.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/krunner.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/solid.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/srcs.nix delete mode 100644 pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix deleted file mode 100644 index e61c4bb86e7c7..0000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/attica.nix b/pkgs/development/libraries/kde-frameworks-5.19/attica.nix deleted file mode 100644 index 98721876c1204..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/attica.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "attica"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix deleted file mode 100644 index 38c41d9271d86..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig -, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime -, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid -}: - -kdeFramework { - name = "baloo"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - kconfig kcrash kdbusaddons lmdb qtquick1 solid - ]; - propagatedBuildInputs = [ - kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase - ]; - postInstall = '' - wrapQtProgram "$out/bin/baloo_file" - wrapQtProgram "$out/bin/baloo_file_extractor" - wrapQtProgram "$out/bin/balooctl" - wrapQtProgram "$out/bin/baloosearch" - wrapQtProgram "$out/bin/balooshow" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix deleted file mode 100644 index f981b0516f720..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtdeclarative -}: - -kdeFramework { - name = "bluez-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative ]; - preConfigure = '' - substituteInPlace CMakeLists.txt \ - --replace /lib/udev/rules.d "$out/lib/udev/rules.d" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix deleted file mode 100644 index 44cc99daf261b..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework -, extra-cmake-modules -, qtsvg -}: - -kdeFramework { - name = "breeze-icons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtsvg ]; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/default.nix deleted file mode 100644 index bb96048d6ff56..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/default.nix +++ /dev/null @@ -1,114 +0,0 @@ -# Maintainer's Notes: -# -# How To Update -# 1. Edit the URL in ./manifest.sh -# 2. Run ./manifest.sh -# 3. Fix build errors. - -{ pkgs, debug ? false }: - -let - - inherit (pkgs) lib makeSetupHook stdenv; - - mirror = "mirror://kde"; - srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; - - packages = self: with self; { - kdeFramework = args: - let - inherit (args) name; - inherit (srcs."${name}") src version; - in stdenv.mkDerivation (args // { - name = "${name}-${version}"; - inherit src; - - outputs = args.outputs or [ "dev" "out" ]; - - cmakeFlags = - (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; - - meta = { - license = with lib.licenses; [ - lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 - ]; - platforms = lib.platforms.linux; - homepage = "http://www.kde.org"; - } // (args.meta or {}); - }); - - attica = callPackage ./attica.nix {}; - baloo = callPackage ./baloo.nix {}; - bluez-qt = callPackage ./bluez-qt.nix {}; - breeze-icons = callPackage ./breeze-icons.nix {}; - extra-cmake-modules = callPackage ./extra-cmake-modules {}; - frameworkintegration = callPackage ./frameworkintegration.nix {}; - kactivities = callPackage ./kactivities.nix {}; - kapidox = callPackage ./kapidox.nix {}; - karchive = callPackage ./karchive.nix {}; - kauth = callPackage ./kauth {}; - kbookmarks = callPackage ./kbookmarks.nix {}; - kcmutils = callPackage ./kcmutils {}; - kcodecs = callPackage ./kcodecs.nix {}; - kcompletion = callPackage ./kcompletion.nix {}; - kconfig = callPackage ./kconfig.nix {}; - kconfigwidgets = callPackage ./kconfigwidgets {}; - kcoreaddons = callPackage ./kcoreaddons.nix {}; - kcrash = callPackage ./kcrash.nix {}; - kdbusaddons = callPackage ./kdbusaddons.nix {}; - kdeclarative = callPackage ./kdeclarative.nix {}; - kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support {}; - kdesignerplugin = callPackage ./kdesignerplugin.nix {}; - kdewebkit = callPackage ./kdewebkit.nix {}; - kdesu = callPackage ./kdesu.nix {}; - kdnssd = callPackage ./kdnssd.nix {}; - kdoctools = callPackage ./kdoctools {}; - kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata {}; - kglobalaccel = callPackage ./kglobalaccel.nix {}; - kguiaddons = callPackage ./kguiaddons.nix {}; - khtml = callPackage ./khtml.nix {}; - ki18n = callPackage ./ki18n.nix {}; - kiconthemes = callPackage ./kiconthemes {}; - kidletime = callPackage ./kidletime.nix {}; - kimageformats = callPackage ./kimageformats.nix {}; - kinit = callPackage ./kinit {}; - kio = callPackage ./kio {}; - kitemmodels = callPackage ./kitemmodels.nix {}; - kitemviews = callPackage ./kitemviews.nix {}; - kjobwidgets = callPackage ./kjobwidgets.nix {}; - kjs = callPackage ./kjs.nix {}; - kjsembed = callPackage ./kjsembed.nix {}; - kmediaplayer = callPackage ./kmediaplayer.nix {}; - knewstuff = callPackage ./knewstuff.nix {}; - knotifications = callPackage ./knotifications.nix {}; - knotifyconfig = callPackage ./knotifyconfig.nix {}; - kpackage = callPackage ./kpackage {}; - kparts = callPackage ./kparts.nix {}; - kpeople = callPackage ./kpeople.nix {}; - kplotting = callPackage ./kplotting.nix {}; - kpty = callPackage ./kpty.nix {}; - kross = callPackage ./kross.nix {}; - krunner = callPackage ./krunner.nix {}; - kservice = callPackage ./kservice {}; - ktexteditor = callPackage ./ktexteditor {}; - ktextwidgets = callPackage ./ktextwidgets.nix {}; - kunitconversion = callPackage ./kunitconversion.nix {}; - kwallet = callPackage ./kwallet.nix {}; - kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; - kwindowsystem = callPackage ./kwindowsystem.nix {}; - kxmlgui = callPackage ./kxmlgui.nix {}; - kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; - modemmanager-qt = callPackage ./modemmanager-qt.nix {}; - networkmanager-qt = callPackage ./networkmanager-qt.nix {}; - oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; - plasma-framework = callPackage ./plasma-framework {}; - solid = callPackage ./solid.nix {}; - sonnet = callPackage ./sonnet.nix {}; - threadweaver = callPackage ./threadweaver.nix {}; - }; - -in packages diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix deleted file mode 100644 index 1c2ea70442d32..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: - -kdeFramework { - name = "extra-cmake-modules"; - - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - - outputs = [ "out" ]; # this package has no runtime components - setupHook = ./setup-hook.sh; - - # It is OK to propagate these inputs as long as - # extra-cmake-modules is never a propagated input - # of some other derivation. - propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - - meta = with lib; { - license = licenses.bsd2; - maintainers = [ maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch deleted file mode 100644 index a74340a6dc969..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch +++ /dev/null @@ -1,37 +0,0 @@ -Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -=================================================================== ---- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake -+++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake -@@ -200,32 +200,6 @@ - # GNUInstallDirs code deals with re-configuring, but that is dealt with - # by the _define_* macros in this module). - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series deleted file mode 100644 index b4569e50a5f73..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series +++ /dev/null @@ -1 +0,0 @@ -nix-lib-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh deleted file mode 100644 index 56ed09f4ea59e..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh +++ /dev/null @@ -1,81 +0,0 @@ -_ecmSetXdgDirs() { - addToSearchPathOnce XDG_DATA_DIRS "$1/share" - addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" -} - -_ecmPropagateSharedData() { - local sharedPaths=( \ - "config.cfg" \ - "doc" \ - "kconf_update" \ - "kservices5" \ - "kservicetypes5" \ - "kxmlgui5" \ - "knotifications5" \ - "icons" \ - "sounds" \ - "templates" \ - "wallpapers" \ - "applications" \ - "desktop-directories" \ - "mime" \ - "info" \ - "dbus-1" \ - "interfaces" \ - "services" \ - "system-services" ) - for dir in ${sharedPaths[@]}; do - if [ -d "$1/share/$dir" ]; then - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" - propagateOnce propagatedUserEnvPkgs "$1" - break - fi - done -} - -_ecmConfig() { - # Because we need to use absolute paths here, we must set *all* the paths. - cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" - cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" - cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" - cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" - cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" - cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" - cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" - cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" - cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" - cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" - cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" - cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" - cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" - cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" - cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" - cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" - cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" - cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" - cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" - cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" - cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" - cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" - cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" - cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" - cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" - cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" - cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" - cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" - cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" - cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" - cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" - cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" - cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" - cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" - cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" - cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" - cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" -} - -envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) -preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh deleted file mode 100755 index 7937e6f8bed92..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /usr/bin/env nix-shell -#! nix-shell -i bash -p coreutils findutils gnused nix wget - -set -x - -# The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.19/" -EXTRA_WGET_ARGS='-A *.tar.xz' - -mkdir tmp; cd tmp - -rm -f ../srcs.csv - -wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS - -find . | while read src; do - if [[ -f "${src}" ]]; then - # Sanitize file name - filename=$(basename "$src" | tr '@' '_') - nameVersion="${filename%.tar.*}" - name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') - version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') - echo "$name,$version,$src,$filename" >>../srcs.csv - fi -done - -cat >../srcs.nix <>../srcs.nix <>../srcs.nix - -rm -f ../srcs.csv - -cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix deleted file mode 100644 index 26987c385ad5d..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion -, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications -, kwidgetsaddons, libXcursor, qtx11extras -}: - -kdeFramework { - name = "frameworkintegration"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kbookmarks kcompletion kconfig knotifications kwidgetsaddons - libXcursor - ]; - propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix deleted file mode 100644 index 3225098f43980..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig -, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n -, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative -}: - -kdeFramework { - name = "kactivities"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - boost kcmutils kconfig kcoreaddons kdbusaddons kservice - kxmlgui - ]; - propagatedBuildInputs = [ - kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kactivitymanagerd" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix deleted file mode 100644 index 647be8f052c39..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, python -}: - -kdeFramework { - name = "kapidox"; - nativeBuildInputs = [ extra-cmake-modules python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix deleted file mode 100644 index a8d9a0003c3b8..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "karchive"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch deleted file mode 100644 index c66f5ecd008f8..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: kauth-5.18.0/KF5AuthConfig.cmake.in -=================================================================== ---- kauth-5.18.0.orig/KF5AuthConfig.cmake.in -+++ kauth-5.18.0/KF5AuthConfig.cmake.in -@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I - - set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") - set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") --set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") --set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") -+set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") -+set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") -+set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") - - find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix deleted file mode 100644 index 1352d8c5821f5..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, kcoreaddons -, polkit-qt -}: - -kdeFramework { - name = "kauth"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ polkit-qt ]; - propagatedBuildInputs = [ kcoreaddons ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/series b/pkgs/development/libraries/kde-frameworks-5.19/kauth/series deleted file mode 100644 index d2689425c3876..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kauth/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix deleted file mode 100644 index 1a469ab4db6da..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kconfigwidgets -, kcoreaddons -, kiconthemes -, kxmlgui -}: - -kdeFramework { - name = "kbookmarks"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kiconthemes - kxmlgui - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 0d861fa95012d..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:43:53 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/kpluginselector.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp -index 9c3431d..d6b1ee2 100644 ---- a/src/kpluginselector.cpp -+++ b/src/kpluginselector.cpp -@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, - QStringList desktopFileNames; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - desktopFileNames.append(it.next()); - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix deleted file mode 100644 index dbbb783ac6152..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets -, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews -, kpackage, kservice, kxmlgui -}: - -kdeFramework { - name = "kcmutils"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kiconthemes kitemviews kpackage kxmlgui - ]; - propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix deleted file mode 100644 index 53a69a69b69c4..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kcodecs"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix deleted file mode 100644 index e393774f16a52..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kwidgetsaddons -}: - -kdeFramework { - name = "kcompletion"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kwidgetsaddons ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix deleted file mode 100644 index e132afe598866..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -}: - -kdeFramework { - name = "kconfig"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kreadconfig5" - wrapQtProgram "$out/bin/kwriteconfig5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 7a6c0ee90534f..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:47:01 -0500 -Subject: [PATCH] qdiriterator follow symlinks - ---- - src/khelpclient.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp -index 53a331e..80fbb01 100644 ---- a/src/khelpclient.cpp -+++ b/src/khelpclient.cpp -@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) - QString docPath; - const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); - Q_FOREACH (const QString &dir, desktopDirs) { -- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString desktopPath(it.next()); - KDesktopFile desktopFile(desktopPath); --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix deleted file mode 100644 index 0e14d06edd367..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig -, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper -}: - -kdeFramework { - name = "kconfigwidgets"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ kguiaddons ]; - propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; - patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; - postInstall = '' - wrapQtProgram "$out/bin/preparetips5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix deleted file mode 100644 index f3a1db7bd4841..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, shared_mime_info -}: - -kdeFramework { - name = "kcoreaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ shared_mime_info ]; - postInstall = '' - wrapQtProgram "$out/bin/desktoptojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix deleted file mode 100644 index bbab78ccb4090..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwindowsystem -, qtx11extras -}: - -kdeFramework { - name = "kcrash"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix deleted file mode 100644 index d2ceab31d14bb..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kdbusaddons"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - propagatedBuildInputs = [ qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kquitapp5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix deleted file mode 100644 index 74d107466cfc4..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage -, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig -, qtdeclarative -}: - -kdeFramework { - name = "kdeclarative"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ - epoxy kguiaddons kiconthemes kwidgetsaddons - ]; - propagatedBuildInputs = [ - kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative - ]; - postInstall = '' - wrapQtProgram "$out/bin/kpackagelauncherqml" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kded.nix b/pkgs/development/libraries/kde-frameworks-5.19/kded.nix deleted file mode 100644 index 47ae2d68c68e4..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kded.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kdoctools -, kinit -, kservice -}: - -kdeFramework { - name = "kded"; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix deleted file mode 100644 index 843db83a99b23..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, docbook_xml_dtd_45, kauth -, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons -, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels -, kinit, knotifications, kparts, kservice, ktextwidgets -, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui -, networkmanager, qtsvg, qtx11extras, xlibs -}: - -# TODO: debug docbook detection - -kdeFramework { - name = "kdelibs4support"; - outputs = [ "dev" "out" ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ - kcompletion kconfig kded kservice kwidgetsaddons - kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM - ]; - propagatedBuildInputs = [ - kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons - kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio - kiconthemes kitemmodels kinit knotifications kparts ktextwidgets - kunitconversion kwindowsystem - ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXML4_DTD_VERSION=4.5" - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch deleted file mode 100644 index eabb702544830..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -=================================================================== ---- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp -+++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp -@@ -292,7 +292,7 @@ static QString relativeInstallPath(const - return QFile::decodeName(ICON_INSTALL_DIR "/"); - } - if (strcmp("include", type) == 0) { -- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); -+ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); - } - break; - case 'l': diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series deleted file mode 100644 index 9b08ab208774a..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series +++ /dev/null @@ -1 +0,0 @@ -nix-kde-include-dir.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh deleted file mode 100644 index 21ac2e83b5dae..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh +++ /dev/null @@ -1 +0,0 @@ -export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix deleted file mode 100644 index cbc114ccca036..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ kdeFramework, lib, makeQtWrapper -, extra-cmake-modules -, kcompletion -, kconfig -, kconfigwidgets -, kcoreaddons -, kdewebkit -, kdoctools -, kiconthemes -, kio -, kitemviews -, kplotting -, ktextwidgets -, kwidgetsaddons -, kxmlgui -, sonnet -}: - -kdeFramework { - name = "kdesignerplugin"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit - kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons - kxmlgui - ]; - propagatedBuildInputs = [ kio sonnet ]; - postInstall = '' - wrapQtProgram "$out/bin/kgendesignerplugin" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix deleted file mode 100644 index 364fbd6a720bd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty -, kservice -}: - -kdeFramework { - name = "kdesu"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kservice ]; - propagatedBuildInputs = [ ki18n kpty ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix deleted file mode 100644 index d361313d1d494..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit -}: - -kdeFramework { - name = "kdewebkit"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; - propagatedBuildInputs = [ ki18n kio qtwebkit ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix deleted file mode 100644 index f00432b0c9ce4..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, avahi -}: - -kdeFramework { - name = "kdnssd"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ avahi ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix deleted file mode 100644 index f67c19f42395a..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 -, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages -}: - -kdeFramework { - name = "kdoctools"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive ]; - propagatedBuildInputs = [ ki18n ]; - propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; - cmakeFlags = [ - "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" - "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" - ]; - patches = [ ./kdoctools-no-find-docbook-xml.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch deleted file mode 100644 index 4e3a33efab32b..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5c4863c..f731775 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES - ) - - --find_package(DocBookXML4 "4.5") - - set_package_properties(DocBookXML4 PROPERTIES - TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix deleted file mode 100644 index d165f84e3a2dd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kservice -}: - -kdeFramework { - name = "kemoticons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ karchive kconfig kcoreaddons ]; - propagatedBuildInputs = [ kservice ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch deleted file mode 100644 index 732f7b69c828d..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kfilemetadata-5.18.0/src/CMakeLists.txt -=================================================================== ---- kfilemetadata-5.18.0.orig/src/CMakeLists.txt -+++ kfilemetadata-5.18.0/src/CMakeLists.txt -@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K - - install(EXPORT KF5FileMetaDataTargets - NAMESPACE KF5:: -- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData -+ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData - FILE KF5FileMetaDataTargets.cmake) - - install(FILES diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix deleted file mode 100644 index 9bb4831cf8da2..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules -, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib -}: - -kdeFramework { - name = "kfilemetadata"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; - propagatedBuildInputs = [ qtbase ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series deleted file mode 100644 index d2689425c3876..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series +++ /dev/null @@ -1 +0,0 @@ -cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix deleted file mode 100644 index c535b3590a388..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kconfig -, kcoreaddons -, kcrash -, kdbusaddons -, kwindowsystem -, makeQtWrapper -, qtx11extras -}: - -kdeFramework { - name = "kglobalaccel"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - postInstall = '' - wrapQtProgram "$out/bin/kglobalaccel5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix deleted file mode 100644 index bc4e9ab11843a..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kguiaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix deleted file mode 100644 index d40df466ebbdc..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, giflib, karchive -, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs -, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons -, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet -}: - -kdeFramework { - name = "khtml"; - nativeBuildInputs = [ extra-cmake-modules perl ]; - buildInputs = [ - giflib karchive kiconthemes knotifications kwallet kwidgetsaddons - kxmlgui phonon - ]; - propagatedBuildInputs = [ - kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets - kwindowsystem qtx11extras sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix deleted file mode 100644 index 268006512e7c3..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, gettext -, python -, qtdeclarative -, qtscript -}: - -kdeFramework { - name = "ki18n"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtdeclarative qtscript ]; - propagatedNativeBuildInputs = [ gettext python ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch deleted file mode 100644 index 5b3b15d5d5b5b..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kiconthemes-5.17.0/src/kicontheme.cpp -=================================================================== ---- kiconthemes-5.17.0.orig/src/kicontheme.cpp -+++ kiconthemes-5.17.0/src/kicontheme.cpp -@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() - // static - QString KIconTheme::defaultThemeName() - { -- return QStringLiteral("oxygen"); -+ return QStringLiteral("breeze"); - } - - void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix deleted file mode 100644 index b78b25582bebd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper -, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg -}: - -kdeFramework { - name = "kiconthemes"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ kconfigwidgets kitemviews qtsvg ]; - propagatedBuildInputs = [ breeze-icons ki18n ]; - postInstall = '' - wrapQtProgram "$out/bin/kiconfinder5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series deleted file mode 100644 index ab5cc8a3edb27..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series +++ /dev/null @@ -1 +0,0 @@ -default-theme-breeze.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix deleted file mode 100644 index fc0865600239f..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtbase -, qtx11extras -}: - -kdeFramework { - name = "kidletime"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - propagatedBuildInputs = [ qtbase ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix deleted file mode 100644 index 49d66bbcc2c64..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, ilmbase -}: - -kdeFramework { - name = "kimageformats"; - nativeBuildInputs = [ extra-cmake-modules ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch deleted file mode 100644 index 9c76079a382a8..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Sat, 13 Jun 2015 08:57:55 -0500 -Subject: [PATCH] kinit libpath - ---- - src/kdeinit/kinit.cpp | 18 ++++++++++-------- - 1 file changed, 10 insertions(+), 8 deletions(-) - -diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp -index 9e775b6..0ac5646 100644 ---- a/src/kdeinit/kinit.cpp -+++ b/src/kdeinit/kinit.cpp -@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, - if (!libpath.isEmpty()) { - if (!l.load()) { - if (libpath_relative) { -- // NB: Because Qt makes the actual dlopen() call, the -- // RUNPATH of kdeinit is *not* respected - see -- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 -- // - so we try hacking it in ourselves -- QString install_lib_dir = QFile::decodeName( -- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); -- libpath = install_lib_dir + libpath; -- l.setFileName(libpath); -+ // Use QT_PLUGIN_PATH to find shared library directories -+ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 -+ // shared libraries should be in /lib/qt5/plugins/../../ -+ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); -+ const QString up = QString::fromLocal8Bit("/../../"); -+ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); -+ Q_FOREACH (const QString &path, paths) { -+ l.setFileName(path + up + libpath); - l.load(); -+ if (l.isLoaded()) break; -+ } - } - } - if (!l.isLoaded()) { --- -2.4.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix deleted file mode 100644 index 5f644d7c424e2..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash -, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs -}: - -# TODO: setuid wrapper - -kdeFramework { - name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; - buildInputs = [ kconfig kcrash kservice libcap ]; - propagatedBuildInputs = [ ki18n kio kwindowsystem ]; - patches = [ ./0001-kinit-libpath.patch ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix deleted file mode 100644 index a2131ff338505..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, acl, karchive -, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons -, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews -, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet -, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper -, qtscript, qtx11extras, solid -}: - -kdeFramework { - name = "kio"; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - acl karchive kconfig kcoreaddons kdbusaddons kiconthemes - knotifications ktextwidgets kwallet kwidgetsaddons - qtscript - ]; - propagatedBuildInputs = [ - kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets - kservice kwindowsystem kxmlgui solid qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/kcookiejar5" - wrapQtProgram "$out/bin/ktelnetservice5" - wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" - wrapQtProgram "$out/bin/protocoltojson" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch deleted file mode 100644 index c9ad46b41bb76..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch +++ /dev/null @@ -1,28 +0,0 @@ -Index: kio-5.17.0/src/core/ksambashare.cpp -=================================================================== ---- kio-5.17.0.orig/src/core/ksambashare.cpp -+++ kio-5.17.0/src/core/ksambashare.cpp -@@ -67,13 +67,18 @@ KSambaSharePrivate::~KSambaSharePrivate( - - bool KSambaSharePrivate::isSambaInstalled() - { -- if (QFile::exists(QStringLiteral("/usr/sbin/smbd")) -- || QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) { -- return true; -+ const QByteArray pathEnv = qgetenv("PATH"); -+ if (!pathEnv.isEmpty()) { -+ QLatin1Char pathSep(':'); -+ QStringList paths = QFile::decodeName(pathEnv).split(pathSep, QString::SkipEmptyParts); -+ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { -+ it->append("/smbd"); -+ if (QFile::exists(*it)) { -+ return true; -+ } -+ } - } - -- //qDebug() << "Samba is not installed!"; -- - return false; - } - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/series b/pkgs/development/libraries/kde-frameworks-5.19/kio/series deleted file mode 100644 index 77ca154500474..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kio/series +++ /dev/null @@ -1 +0,0 @@ -samba-search-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix deleted file mode 100644 index a9024d771cc33..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemmodels"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix deleted file mode 100644 index 931019ce495d7..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kitemviews"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix deleted file mode 100644 index 746edf12eea03..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcoreaddons -, kwidgetsaddons -, qtx11extras -}: - -kdeFramework { - name = "kjobwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcoreaddons kwidgetsaddons ]; - propagatedBuildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix deleted file mode 100644 index 768720f178c87..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kdoctools -, makeQtWrapper -}: - -kdeFramework { - name = "kjs"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - postInstall = '' - wrapQtProgram "$out/bin/kjs5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix deleted file mode 100644 index 22eef2d47bde6..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs -, makeQtWrapper, qtsvg -}: - -kdeFramework { - name = "kjsembed"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ qtsvg ]; - propagatedBuildInputs = [ ki18n kjs ]; - postInstall = '' - wrapQtProgram "$out/bin/kjscmd5" - wrapQtProgram "$out/bin/kjsconsole" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix deleted file mode 100644 index 460458b22323a..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kparts -, kxmlgui -}: - -kdeFramework { - name = "kmediaplayer"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kxmlgui ]; - propagatedBuildInputs = [ kparts ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix deleted file mode 100644 index 5bcd6f3014624..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, karchive -, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio -, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "knewstuff"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - karchive kcompletion kconfig kcoreaddons kiconthemes - kitemviews ktextwidgets kwidgetsaddons - ]; - propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix deleted file mode 100644 index 7e301dd0f2683..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, kcodecs -, kconfig -, kcoreaddons -, kwindowsystem -, phonon -, qtx11extras -}: - -kdeFramework { - name = "knotifications"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcodecs kconfig kcoreaddons phonon - ]; - propagatedBuildInputs = [ kwindowsystem qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix deleted file mode 100644 index dd99d2d4f1e57..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, ki18n, kio, phonon -}: - -kdeFramework { - name = "knotifyconfig"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ kcompletion kconfig phonon ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch deleted file mode 100644 index e9d7444481480..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/package.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/package.cpp -+++ kpackage-5.18.0/src/kpackage/package.cpp -@@ -808,7 +808,7 @@ PackagePrivate::PackagePrivate() - : QSharedData(), - fallbackPackage(0), - metadata(0), -- externalPaths(false), -+ externalPaths(true), - valid(false), - checkedValid(false) - { diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix deleted file mode 100644 index aea1b0d31a0d9..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules -, karchive -, kconfig -, kcoreaddons -, kdoctools -, ki18n -, makeQtWrapper -}: - -kdeFramework { - name = "kpackage"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ karchive kconfig ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - postInstall = '' - wrapQtProgram "$out/bin/kpackagetool5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch deleted file mode 100644 index ddbf17d00064c..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,26 +0,0 @@ -Index: kpackage-5.18.0/src/kpackage/packageloader.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/packageloader.cpp -+++ kpackage-5.18.0/src/kpackage/packageloader.cpp -@@ -241,7 +241,7 @@ QList PackageLoader::li - } else { - //qDebug() << "Not cached"; - // If there's no cache file, fall back to listing the directory -- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; -+ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; - const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")) << QStringLiteral("metadata.json"); - - QDirIterator it(plugindir, nameFilters, QDir::Files, flags); -Index: kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -=================================================================== ---- kpackage-5.18.0.orig/src/kpackage/private/packagejobthread.cpp -+++ kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp -@@ -146,7 +146,7 @@ bool indexDirectory(const QString& dir, - - QJsonArray plugins; - -- QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories); -+ QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - it.next(); - const QString path = it.fileInfo().absoluteFilePath(); diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series deleted file mode 100644 index 9b7f076efc70e..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series +++ /dev/null @@ -1,2 +0,0 @@ -allow-external-paths.patch -qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix b/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix deleted file mode 100644 index 1c3e0b2cbc519..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice -, ktextwidgets, kwidgetsaddons, kxmlgui -}: - -kdeFramework { - name = "kparts"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kiconthemes kjobwidgets knotifications - kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix deleted file mode 100644 index 4c3877e7efd2f..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n -, kitemviews, kservice, kwidgetsaddons, qtdeclarative -}: - -kdeFramework { - name = "kpeople"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcoreaddons kitemviews kservice kwidgetsaddons - ]; - propagatedBuildInputs = [ ki18n qtdeclarative ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix b/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix deleted file mode 100644 index c16f51b5ac3cd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kplotting"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix deleted file mode 100644 index 2e34e6f674cee..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }: - -kdeFramework { - name = "kpty"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ kcoreaddons ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kross.nix b/pkgs/development/libraries/kde-frameworks-5.19/kross.nix deleted file mode 100644 index 7c6f079feaa7c..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kross.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kcoreaddons -, kdoctools, ki18n, kiconthemes, kio, kparts, kwidgetsaddons -, kxmlgui, qtscript -}: - -kdeFramework { - name = "kross"; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; - buildInputs = [ kcompletion kcoreaddons kxmlgui ]; - propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix b/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix deleted file mode 100644 index 12d2b54d0eb36..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, ki18n, kio, kservice, plasma-framework, qtquick1, solid -, threadweaver -}: - -kdeFramework { - name = "krunner"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kconfig kcoreaddons kservice qtquick1 solid threadweaver - ]; - propagatedBuildInputs = [ ki18n kio plasma-framework ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch deleted file mode 100644 index 3d8397d8ee2df..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch +++ /dev/null @@ -1,25 +0,0 @@ -From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:28:57 -0500 -Subject: [PATCH 1/2] qdiriterator follow symlinks - ---- - src/sycoca/kbuildsycoca.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp -index 1deae14..250baa8 100644 ---- a/src/sycoca/kbuildsycoca.cpp -+++ b/src/sycoca/kbuildsycoca.cpp -@@ -208,7 +208,7 @@ bool KBuildSycoca::build() - QStringList relFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); - Q_FOREACH (const QString &dir, dirs) { -- QDirIterator it(dir, QDirIterator::Subdirectories); -+ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); - while (it.hasNext()) { - const QString filePath = it.next(); - Q_ASSERT(filePath.startsWith(dir)); // due to the line below... --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch deleted file mode 100644 index 685c685261195..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Wed, 14 Oct 2015 06:31:29 -0500 -Subject: [PATCH 2/2] no canonicalize path - ---- - src/sycoca/vfolder_menu.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp -index d3e31c3..d15d743 100644 ---- a/src/sycoca/vfolder_menu.cpp -+++ b/src/sycoca/vfolder_menu.cpp -@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR - } - - if (!relative) { -- QString resolved = QDir(dir).canonicalPath(); -+ QString resolved = QDir::cleanPath(dir); - if (!resolved.isEmpty()) { - dir = resolved; - } --- -2.5.2 - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix deleted file mode 100644 index 3a27d85b9166e..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons -, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem -}: - -kdeFramework { - name = "kservice"; - propagatedNativeBuildInputs = [ extra-cmake-modules ]; - nativeBuildInputs = [ kdoctools ]; - buildInputs = [ kcrash kdbusaddons ]; - propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - patches = [ - ./0001-qdiriterator-follow-symlinks.patch - ./0002-no-canonicalize-path.patch - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix deleted file mode 100644 index b8df6a5f4c0d4..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ kdeFramework, lib, copyPathsToStore -, extra-cmake-modules, makeQtWrapper, perl -, karchive, kconfig, kguiaddons, kiconthemes, kparts -, libgit2 -, qtscript, qtxmlpatterns -, ki18n, kio, sonnet -}: - -kdeFramework { - name = "ktexteditor"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; - buildInputs = [ - karchive kconfig kguiaddons kiconthemes kparts - libgit2 - qtscript qtxmlpatterns - ]; - propagatedBuildInputs = [ ki18n kio sonnet ]; - patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch deleted file mode 100644 index 19ab1e1e55138..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch +++ /dev/null @@ -1,36 +0,0 @@ -Index: ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -=================================================================== ---- ktexteditor-5.18.0.orig/src/syntax/data/katehighlightingindexer.cpp -+++ ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp -@@ -55,19 +55,16 @@ QStringList readListing(const QString &f - - int main(int argc, char *argv[]) - { -- // get app instance -- QCoreApplication app(argc, argv); -- - // ensure enough arguments are passed -- if (app.arguments().size() < 3) -+ if (argc < 3) - return 1; - - // open schema - QXmlSchema schema; -- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) -+ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) - return 2; - -- const QString hlFilenamesListing = app.arguments().value(3); -+ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); - if (hlFilenamesListing.isEmpty()) { - return 1; - } -@@ -152,7 +149,7 @@ int main(int argc, char *argv[]) - return anyError; - - // create outfile, after all has worked! -- QFile outFile(app.arguments().at(1)); -+ QFile outFile(QString::fromLocal8Bit(argv[1])); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series deleted file mode 100644 index 46cd23829a2fd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series +++ /dev/null @@ -1 +0,0 @@ -no-qcoreapplication.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix deleted file mode 100644 index e332d4ff9a832..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig -, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem -, sonnet -}: - -kdeFramework { - name = "ktextwidgets"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - kcompletion kconfig kconfigwidgets kiconthemes kservice - ]; - propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix deleted file mode 100644 index 3cf0f847d83d5..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n }: - -kdeFramework { - name = "kunitconversion"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix deleted file mode 100644 index 5ade5f63a8d04..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets -, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes -, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt -, makeQtWrapper }: - -kdeFramework { - name = "kwallet"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes - knotifications kservice kwidgetsaddons libgcrypt - ]; - propagatedBuildInputs = [ ki18n kwindowsystem ]; - postInstall = '' - wrapQtProgram "$out/bin/kwalletd5" - wrapQtProgram "$out/bin/kwallet-query" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix deleted file mode 100644 index d95f44d3fecfd..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "kwidgetsaddons"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix deleted file mode 100644 index 09ab1f2200de3..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, qtx11extras -}: - -kdeFramework { - name = "kwindowsystem"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ qtx11extras ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix deleted file mode 100644 index f081d5f9170e3..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, attica, kconfig -, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews -, ktextwidgets, kwindowsystem, sonnet -}: - -kdeFramework { - name = "kxmlgui"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ - attica kconfig kiconthemes kitemviews ktextwidgets - ]; - propagatedBuildInputs = [ - kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet - ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix deleted file mode 100644 index 20a300b68bc87..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: - -kdeFramework { - name = "kxmlrpcclient"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ ki18n kio ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix deleted file mode 100644 index 7d7f769d6a9be..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, modemmanager -}: - -kdeFramework { - name = "modemmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ modemmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix deleted file mode 100644 index 333378bd14316..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, networkmanager -}: - -kdeFramework { - name = "networkmanager-qt"; - nativeBuildInputs = [ extra-cmake-modules ]; - propagatedBuildInputs = [ networkmanager ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix deleted file mode 100644 index ee350f8e15367..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework -, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "oxygen-icons5"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - license = lib.licenses.lgpl3Plus; - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix deleted file mode 100644 index d8846f7772318..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive -, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative -, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio -, knotifications, kpackage, kservice, kwindowsystem, kxmlgui -, makeQtWrapper, qtscript, qtx11extras -}: - -kdeFramework { - name = "plasma-framework"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons - kiconthemes knotifications kxmlgui qtscript - ]; - propagatedBuildInputs = [ - kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem - qtx11extras - ]; - postInstall = '' - wrapQtProgram "$out/bin/plasmapkg2" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/solid.nix b/pkgs/development/libraries/kde-frameworks-5.19/solid.nix deleted file mode 100644 index afd125e3c5973..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/solid.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, makeQtWrapper -, qtdeclarative -}: - -kdeFramework { - name = "solid"; - nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; - buildInputs = [ qtdeclarative ]; - postInstall = '' - wrapQtProgram "$out/bin/solid-hardware5" - ''; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix deleted file mode 100644 index 943fe04a1c92c..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -, hunspell -}: - -kdeFramework { - name = "sonnet"; - nativeBuildInputs = [ extra-cmake-modules ]; - buildInputs = [ hunspell ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix deleted file mode 100644 index b86c0b71224d6..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix +++ /dev/null @@ -1,565 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/attica-5.19.0.tar.xz"; - sha256 = "0cbvjnv2fcqsxspiy5pzmnnzrpfamlsc9j927kd6gpzai1ckf1lv"; - name = "attica-5.19.0.tar.xz"; - }; - }; - baloo = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/baloo-5.19.0.tar.xz"; - sha256 = "02yy0w13h5wxm74a87zi439f6yd9miid6rb54nia0pgvcka98svg"; - name = "baloo-5.19.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/bluez-qt-5.19.0.tar.xz"; - sha256 = "0609i7rzhnnnp4fqnwscwp6y646ji8kl2hw5sy7azc87yllisnyv"; - name = "bluez-qt-5.19.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/breeze-icons-5.19.0.tar.xz"; - sha256 = "0bwix0jl1dscqfb7ygn9drpd9ivfx4g15vz6h01mswvxa9lz1vj0"; - name = "breeze-icons-5.19.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/extra-cmake-modules-5.19.0.tar.xz"; - sha256 = "1dl3hhbara7iswb5wsc5dp17ar3ljw5f0nrncl8vry9smaz2zl63"; - name = "extra-cmake-modules-5.19.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/frameworkintegration-5.19.0.tar.xz"; - sha256 = "00la7p7wcyqpxyi73h4fjrmm9d2gqzdaljn4468xya4bfns5ijy3"; - name = "frameworkintegration-5.19.0.tar.xz"; - }; - }; - kactivities = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kactivities-5.19.0.tar.xz"; - sha256 = "0yml1sbn3z4jd4vsfs25kqrl03pmlcgamzbgpw3248sabhyg7ks3"; - name = "kactivities-5.19.0.tar.xz"; - }; - }; - kapidox = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kapidox-5.19.0.tar.xz"; - sha256 = "0a9731xrkd6mnqh72592rx6gfnxxdfd7xl8pdpgdn7qs3394k1yz"; - name = "kapidox-5.19.0.tar.xz"; - }; - }; - karchive = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/karchive-5.19.0.tar.xz"; - sha256 = "043spmi7s2d1bj8d3wbgzbhisip6h92kqjhlvg8gyv0a7vy54ymv"; - name = "karchive-5.19.0.tar.xz"; - }; - }; - kauth = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kauth-5.19.0.tar.xz"; - sha256 = "0fm9ih2hkh2rpmlf98yw8z1r5bn2qmpva2k7mrv6ijd5h767fxss"; - name = "kauth-5.19.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kbookmarks-5.19.0.tar.xz"; - sha256 = "0q418jpdc348nqgdavsmxxka4g8sldpdi9n89i1pllfmq10kw9sd"; - name = "kbookmarks-5.19.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcmutils-5.19.0.tar.xz"; - sha256 = "0qhdjb3zvqq9ycfgb52lz4flgipyplj5ksz8h8y71bbs4w6lazd8"; - name = "kcmutils-5.19.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcodecs-5.19.0.tar.xz"; - sha256 = "1rzp314fv9n5168j7nhv1c8fjaszpmgdx6javrx4w0hyrjdfkg66"; - name = "kcodecs-5.19.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcompletion-5.19.0.tar.xz"; - sha256 = "05n0y5kf3bcc4wgn6k0js5cravv1k93xxzrgapm21323qgvfagwd"; - name = "kcompletion-5.19.0.tar.xz"; - }; - }; - kconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfig-5.19.0.tar.xz"; - sha256 = "0nk5hfl8yh0kgaa7xi0cc05dl6nf7prvbvxv0i99207xh9dafdmm"; - name = "kconfig-5.19.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kconfigwidgets-5.19.0.tar.xz"; - sha256 = "1nld27chcjwjgwv76s2j77ifmca235yp10bm08rjmvnfn6778ypv"; - name = "kconfigwidgets-5.19.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcoreaddons-5.19.0.tar.xz"; - sha256 = "07sm0givfdx28p302fkynzsd3xkpn1hbs43d4rscyx18yxfsldcw"; - name = "kcoreaddons-5.19.0.tar.xz"; - }; - }; - kcrash = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kcrash-5.19.0.tar.xz"; - sha256 = "1dy03gp1sj96wn0zfa0dpbvz8pz0ia1j7p1wcif3iqk55pjxdgyl"; - name = "kcrash-5.19.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdbusaddons-5.19.0.tar.xz"; - sha256 = "1bb5aik0kl3kab5399drfjxrm8iysgkf813xgr0y4k64c9kwfp28"; - name = "kdbusaddons-5.19.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdeclarative-5.19.0.tar.xz"; - sha256 = "03g02zy7wjzmpvqzxx32z8ap7jyj9sf432g1d3csb0dcbx2ny52g"; - name = "kdeclarative-5.19.0.tar.xz"; - }; - }; - kded = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kded-5.19.0.tar.xz"; - sha256 = "0nyvg0h2aqy7qr57bad6wyc2rmcv9nhdq0py4fxc3irb6516p9hz"; - name = "kded-5.19.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kdelibs4support-5.19.0.tar.xz"; - sha256 = "0iqnb2j6gfy8006arwv65vljfhxdnk6aia0zppngb481jnd9n2pn"; - name = "kdelibs4support-5.19.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesignerplugin-5.19.0.tar.xz"; - sha256 = "11inmvyair796rx4842naf1dnxqvc6bqqzrv700ycvisad646ws5"; - name = "kdesignerplugin-5.19.0.tar.xz"; - }; - }; - kdesu = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdesu-5.19.0.tar.xz"; - sha256 = "19w8m7ji61bpd368lzkwlizcwa1l968l568lksgm2mm9pnyjjhgz"; - name = "kdesu-5.19.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdewebkit-5.19.0.tar.xz"; - sha256 = "04b5qanhxggffnvmi28lspyi8kj4kq7mxhxndar9fmkzzgvy70hj"; - name = "kdewebkit-5.19.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdnssd-5.19.0.tar.xz"; - sha256 = "15a8w2i29mrbhadw6y123mr0cc45ijabnwdfp3lbkd40lk8nq314"; - name = "kdnssd-5.19.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kdoctools-5.19.0.tar.xz"; - sha256 = "06g77n9wxpiv4skc1kz794ppfb2mkmd3fgn6an5kr301xc76cnpn"; - name = "kdoctools-5.19.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kemoticons-5.19.0.tar.xz"; - sha256 = "0fiix2sf2wrvmrpx8whdr1bzm7gbv7pvg02y47w5bl6s9gh176g5"; - name = "kemoticons-5.19.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kfilemetadata-5.19.0.tar.xz"; - sha256 = "11j8if3xhp3xxwibwm6nxb4lh8wx40ni3zf5hki327pxv4vpq3qr"; - name = "kfilemetadata-5.19.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kglobalaccel-5.19.0.tar.xz"; - sha256 = "021j98f7217m83aqxpamg0lzlaiskdaqsd9iabc8wrp1g0nkm05d"; - name = "kglobalaccel-5.19.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kguiaddons-5.19.0.tar.xz"; - sha256 = "019xaf7vpgifcw8wibli9d2b50brhgdaypsqknh6mqq8q9g06jhy"; - name = "kguiaddons-5.19.0.tar.xz"; - }; - }; - khtml = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/khtml-5.19.0.tar.xz"; - sha256 = "0hqa54a9nxy954vy8gf52y89xd3ibz9b4jgh6w347b1alp1zn145"; - name = "khtml-5.19.0.tar.xz"; - }; - }; - ki18n = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ki18n-5.19.0.tar.xz"; - sha256 = "0v3arc20y5d8afm9zfrz1skd2xg3ng62cq1xvxiq645w6mxf7y05"; - name = "ki18n-5.19.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kiconthemes-5.19.0.tar.xz"; - sha256 = "0riicirgda3w2b30dzsa2lq9xrr4y04qwhxyzq1p8gn2x4pp3g3n"; - name = "kiconthemes-5.19.0.tar.xz"; - }; - }; - kidletime = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kidletime-5.19.0.tar.xz"; - sha256 = "0jlbzqv36ddhfhk8xkkgw0xhq8s371z9ama1cyv2xq8kk4vjywc6"; - name = "kidletime-5.19.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kimageformats-5.19.0.tar.xz"; - sha256 = "1ydizc6b0ncndazk62h8y249yfcx381pwzyivfpka1f69zfgyvv5"; - name = "kimageformats-5.19.0.tar.xz"; - }; - }; - kinit = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kinit-5.19.0.tar.xz"; - sha256 = "03l7pijqdnnsfg6yz9p73p7xa86sldayggl6rc5hpkzmgyczcfzm"; - name = "kinit-5.19.0.tar.xz"; - }; - }; - kio = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kio-5.19.0.tar.xz"; - sha256 = "0c7smp7cajivx53shy65mp9zcc51pha9iyvh37dggfflxy3xf9nv"; - name = "kio-5.19.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemmodels-5.19.0.tar.xz"; - sha256 = "0skmim986qnncbzd84vm1wp1fr41jn04af2dgckirsk23d35bln7"; - name = "kitemmodels-5.19.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kitemviews-5.19.0.tar.xz"; - sha256 = "118zv46mvrfwbvl06bb1m8axv92wnp4pfs36hsxvnjl7gfjk5xjn"; - name = "kitemviews-5.19.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kjobwidgets-5.19.0.tar.xz"; - sha256 = "1qzf8nzy8rxkdai9aj2lyrww90245v0p2q115xiz73bsg9rahmji"; - name = "kjobwidgets-5.19.0.tar.xz"; - }; - }; - kjs = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjs-5.19.0.tar.xz"; - sha256 = "08m01762hb25vm020g3v37bh40cgvcfrj45ql135klx96x9imfaf"; - name = "kjs-5.19.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kjsembed-5.19.0.tar.xz"; - sha256 = "1wmkgy8jgm21y2cvcbv1fdv29dxxla8n6ws78kzzbbw4cgqwwl48"; - name = "kjsembed-5.19.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kmediaplayer-5.19.0.tar.xz"; - sha256 = "1vhqr2c7q8vwzdj29vpmfjfhyal8wp9ffirrnqc98vb6sffs85ay"; - name = "kmediaplayer-5.19.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knewstuff-5.19.0.tar.xz"; - sha256 = "12acd12vxk9z83zg3yz8lvmmb8737z9lzd4hs9a3jcs1z5k2nhb4"; - name = "knewstuff-5.19.0.tar.xz"; - }; - }; - knotifications = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifications-5.19.0.tar.xz"; - sha256 = "0grgm0ws16gp2j77nslqpl1jpxbi0m6g59zr7v1xnmzdk2j6n4av"; - name = "knotifications-5.19.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/knotifyconfig-5.19.0.tar.xz"; - sha256 = "161brvryxzdkny7sf6icn1jpyi6rnw6jc808gdf5g41v50xpnxfj"; - name = "knotifyconfig-5.19.0.tar.xz"; - }; - }; - kpackage = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpackage-5.19.0.tar.xz"; - sha256 = "1km4sjgxfljp2pnjnzj48q3c574zvj7341a57n4ifhjwj37yzxdv"; - name = "kpackage-5.19.0.tar.xz"; - }; - }; - kparts = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kparts-5.19.0.tar.xz"; - sha256 = "05g59x2mrqygawzcwgw3igl5n96l649h0kpzh37sfq4i8kg15g7l"; - name = "kparts-5.19.0.tar.xz"; - }; - }; - kpeople = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpeople-5.19.0.tar.xz"; - sha256 = "1ksf6g71li1xk4q98cvwkam8m8g32x2815kj1gfwbg4g6iw74w98"; - name = "kpeople-5.19.0.tar.xz"; - }; - }; - kplotting = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kplotting-5.19.0.tar.xz"; - sha256 = "169x4m9ms8yhfha8zclnl8wrnfhfqshpwwg4b5bd046pcrkqmnqq"; - name = "kplotting-5.19.0.tar.xz"; - }; - }; - kpty = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kpty-5.19.0.tar.xz"; - sha256 = "0289vzfjwppwqj9h03flzhwm18dnxz11hqhdhr9990x7rw6a4n03"; - name = "kpty-5.19.0.tar.xz"; - }; - }; - kross = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/kross-5.19.0.tar.xz"; - sha256 = "1nv7mrhn7wa4bs2a164x42d3b37akyvhkxqs8cg5fqp4vr2wkw0p"; - name = "kross-5.19.0.tar.xz"; - }; - }; - krunner = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/portingAids/krunner-5.19.0.tar.xz"; - sha256 = "054s8309lxi27gpbg7iygbcxsp0pwrzbzww3h8zp2a9yiic4s5mx"; - name = "krunner-5.19.0.tar.xz"; - }; - }; - kservice = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kservice-5.19.0.tar.xz"; - sha256 = "02lbia26r2462nwksizaxjfkhxfqqs732dp495yx8bjc7wcv3srm"; - name = "kservice-5.19.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktexteditor-5.19.0.tar.xz"; - sha256 = "0v3l44w4k43ajs81i8386hszk3x7rajjlb6z3jb7q98vhp91b5dp"; - name = "ktexteditor-5.19.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/ktextwidgets-5.19.0.tar.xz"; - sha256 = "1xydb76r6x1p10bkr2nlqg3md78jw8zvqad0h42dgvl4f5xvjknp"; - name = "ktextwidgets-5.19.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kunitconversion-5.19.0.tar.xz"; - sha256 = "11g1vhqkrb1k748drj7klkbb7jca3dybakcmcgqf53g8vxfih8kb"; - name = "kunitconversion-5.19.0.tar.xz"; - }; - }; - kwallet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwallet-5.19.0.tar.xz"; - sha256 = "0z0c62fdfx9syrq6z7bk0ihac4yqyxpycll7h3mijj29km4jnpjm"; - name = "kwallet-5.19.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwidgetsaddons-5.19.0.tar.xz"; - sha256 = "0b85ng0dj5gpzifqmhyzgx61nb37vq7d0gvfpfazlcp5n27ywivm"; - name = "kwidgetsaddons-5.19.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kwindowsystem-5.19.0.tar.xz"; - sha256 = "115xs34r74j9zcsw69glnh8w59iyh764n3gniawwrk23c6yb8fch"; - name = "kwindowsystem-5.19.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlgui-5.19.0.tar.xz"; - sha256 = "1al2xifiyvl3zpva9nqap8gb6vqfgmf2fnhkmymm02rwg4yn4gah"; - name = "kxmlgui-5.19.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/kxmlrpcclient-5.19.0.tar.xz"; - sha256 = "0lji7cxvh2lmjz42lx6ymz962gr4cyqfzksz0n5vgzfk5z0vq98g"; - name = "kxmlrpcclient-5.19.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/modemmanager-qt-5.19.0.tar.xz"; - sha256 = "05x9jicryjw9fj02arpya8xsh79rsnljnqjfpwbb7pi38f9i8v4w"; - name = "modemmanager-qt-5.19.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/networkmanager-qt-5.19.0.tar.xz"; - sha256 = "0wi0mkygzbvvyil1nyzc3ihgilvpx6j7caqaa9k38p85g93vsq13"; - name = "networkmanager-qt-5.19.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/oxygen-icons5-5.19.0.tar.xz"; - sha256 = "09vfwcyidj3bl0qr4sq78bkc69zp9x8dwp8bsay5y05q8591dkg0"; - name = "oxygen-icons5-5.19.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/plasma-framework-5.19.0.tar.xz"; - sha256 = "1588r1jag0s9hhw4qq7mr2mcdd3d9az5ngb3z1l58xdhvfcc4497"; - name = "plasma-framework-5.19.0.tar.xz"; - }; - }; - solid = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/solid-5.19.0.tar.xz"; - sha256 = "02bnvhscb55r6q5hkyh7rqi6zsc3r974y3x9shi8l0xbs78snkgz"; - name = "solid-5.19.0.tar.xz"; - }; - }; - sonnet = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/sonnet-5.19.0.tar.xz"; - sha256 = "02ringh0wyiq1n19c200bcyf5x2w5jhw0pcxvfjzjai1sjig03x7"; - name = "sonnet-5.19.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.19.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.19/threadweaver-5.19.0.tar.xz"; - sha256 = "1jm1sw7xq76s2ggghm6qqdn7452myy9n7p5zzdb01qbaw2y1x4pw"; - name = "threadweaver-5.19.0.tar.xz"; - }; - }; -} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix deleted file mode 100644 index 52817921cc723..0000000000000 --- a/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ kdeFramework, lib -, extra-cmake-modules -}: - -kdeFramework { - name = "threadweaver"; - nativeBuildInputs = [ extra-cmake-modules ]; - meta = { - maintainers = [ lib.maintainers.ttuegel ]; - }; -} -- cgit 1.4.1 From a42f8459253d8f226d7d4611f057fc4d578a658c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 2 May 2016 09:53:29 +0200 Subject: coq-dpdgraph: init at 0.5 --- pkgs/development/coq-modules/dpdgraph/default.nix | 31 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/coq-modules/dpdgraph/default.nix diff --git a/pkgs/development/coq-modules/dpdgraph/default.nix b/pkgs/development/coq-modules/dpdgraph/default.nix new file mode 100644 index 0000000000000..0dec05ebd3f5d --- /dev/null +++ b/pkgs/development/coq-modules/dpdgraph/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub, coq, ocamlPackages }: + +stdenv.mkDerivation { + name = "coq${coq.coq-version}-dpdgraph-0.5"; + src = fetchFromGitHub { + owner = "Karmaki"; + repo = "coq-dpdgraph"; + rev = "227a6a28bf11cf1ea56f359160558965154dd176"; + sha256 = "1vxf7qq37mnmlclkr394147xvrky3p98ar08c4wndwrp41gfbxhq"; + }; + + buildInputs = [ coq ] + ++ (with ocamlPackages; [ ocaml findlib ocamlgraph ]); + + preInstall = '' + mkdir -p $out/bin + ''; + + installFlags = '' + COQLIB=$(out)/lib/coq/${coq.coq-version}/ + BINDIR=$(out)/bin + ''; + + meta = { + description = "Build dependency graphs between Coq objects"; + license = stdenv.lib.licenses.lgpl21; + homepage = https://github.com/Karmaki/coq-dpdgraph/; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + platforms = coq.meta.platforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3137b95b07ab9..85c2afd4a5407 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15882,6 +15882,8 @@ in coquelicot = callPackage ../development/coq-modules/coquelicot {}; + dpdgraph = callPackage ../development/coq-modules/dpdgraph {}; + flocq = callPackage ../development/coq-modules/flocq {}; interval = callPackage ../development/coq-modules/interval {}; -- cgit 1.4.1 From 372782d1f02138ffd5b1518a38545e88014c63c8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 24 Apr 2016 23:44:10 +0200 Subject: hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-5-gcb85ef4 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/24af5f79f4ffadbce08f69dbf99adc9e779763ea - LTS Haskell: https://github.com/fpco/lts-haskell/commit/4d628b7b7ec70abdaf5868f8a818e2ebdc05c2bd - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/2b431f312c0ceebe82f72afb748a4a052e4ff6f6 --- .../haskell-modules/configuration-lts-0.0.nix | 36 + .../haskell-modules/configuration-lts-0.1.nix | 36 + .../haskell-modules/configuration-lts-0.2.nix | 36 + .../haskell-modules/configuration-lts-0.3.nix | 36 + .../haskell-modules/configuration-lts-0.4.nix | 36 + .../haskell-modules/configuration-lts-0.5.nix | 36 + .../haskell-modules/configuration-lts-0.6.nix | 36 + .../haskell-modules/configuration-lts-0.7.nix | 36 + .../haskell-modules/configuration-lts-1.0.nix | 36 + .../haskell-modules/configuration-lts-1.1.nix | 36 + .../haskell-modules/configuration-lts-1.10.nix | 36 + .../haskell-modules/configuration-lts-1.11.nix | 36 + .../haskell-modules/configuration-lts-1.12.nix | 36 + .../haskell-modules/configuration-lts-1.13.nix | 36 + .../haskell-modules/configuration-lts-1.14.nix | 37 + .../haskell-modules/configuration-lts-1.15.nix | 37 + .../haskell-modules/configuration-lts-1.2.nix | 36 + .../haskell-modules/configuration-lts-1.4.nix | 36 + .../haskell-modules/configuration-lts-1.5.nix | 36 + .../haskell-modules/configuration-lts-1.7.nix | 36 + .../haskell-modules/configuration-lts-1.8.nix | 36 + .../haskell-modules/configuration-lts-1.9.nix | 36 + .../haskell-modules/configuration-lts-2.0.nix | 37 + .../haskell-modules/configuration-lts-2.1.nix | 37 + .../haskell-modules/configuration-lts-2.10.nix | 37 + .../haskell-modules/configuration-lts-2.11.nix | 37 + .../haskell-modules/configuration-lts-2.12.nix | 37 + .../haskell-modules/configuration-lts-2.13.nix | 37 + .../haskell-modules/configuration-lts-2.14.nix | 37 + .../haskell-modules/configuration-lts-2.15.nix | 37 + .../haskell-modules/configuration-lts-2.16.nix | 38 + .../haskell-modules/configuration-lts-2.17.nix | 38 + .../haskell-modules/configuration-lts-2.18.nix | 38 + .../haskell-modules/configuration-lts-2.19.nix | 38 + .../haskell-modules/configuration-lts-2.2.nix | 37 + .../haskell-modules/configuration-lts-2.20.nix | 38 + .../haskell-modules/configuration-lts-2.21.nix | 39 + .../haskell-modules/configuration-lts-2.22.nix | 39 + .../haskell-modules/configuration-lts-2.3.nix | 37 + .../haskell-modules/configuration-lts-2.4.nix | 37 + .../haskell-modules/configuration-lts-2.5.nix | 37 + .../haskell-modules/configuration-lts-2.6.nix | 37 + .../haskell-modules/configuration-lts-2.7.nix | 37 + .../haskell-modules/configuration-lts-2.8.nix | 37 + .../haskell-modules/configuration-lts-2.9.nix | 37 + .../haskell-modules/configuration-lts-3.0.nix | 44 + .../haskell-modules/configuration-lts-3.1.nix | 45 + .../haskell-modules/configuration-lts-3.10.nix | 52 + .../haskell-modules/configuration-lts-3.11.nix | 52 + .../haskell-modules/configuration-lts-3.12.nix | 52 + .../haskell-modules/configuration-lts-3.13.nix | 52 + .../haskell-modules/configuration-lts-3.14.nix | 55 + .../haskell-modules/configuration-lts-3.15.nix | 55 + .../haskell-modules/configuration-lts-3.16.nix | 55 + .../haskell-modules/configuration-lts-3.17.nix | 55 + .../haskell-modules/configuration-lts-3.18.nix | 56 + .../haskell-modules/configuration-lts-3.19.nix | 57 + .../haskell-modules/configuration-lts-3.2.nix | 46 + .../haskell-modules/configuration-lts-3.20.nix | 57 + .../haskell-modules/configuration-lts-3.21.nix | 58 + .../haskell-modules/configuration-lts-3.22.nix | 59 + .../haskell-modules/configuration-lts-3.3.nix | 46 + .../haskell-modules/configuration-lts-3.4.nix | 46 + .../haskell-modules/configuration-lts-3.5.nix | 47 + .../haskell-modules/configuration-lts-3.6.nix | 48 + .../haskell-modules/configuration-lts-3.7.nix | 48 + .../haskell-modules/configuration-lts-3.8.nix | 51 + .../haskell-modules/configuration-lts-3.9.nix | 51 + .../haskell-modules/configuration-lts-4.0.nix | 76 + .../haskell-modules/configuration-lts-4.1.nix | 78 + .../haskell-modules/configuration-lts-4.2.nix | 81 + .../haskell-modules/configuration-lts-5.0.nix | 88 + .../haskell-modules/configuration-lts-5.1.nix | 90 + .../haskell-modules/configuration-lts-5.10.nix | 114 + .../haskell-modules/configuration-lts-5.11.nix | 120 + .../haskell-modules/configuration-lts-5.12.nix | 123 + .../haskell-modules/configuration-lts-5.13.nix | 128 + .../haskell-modules/configuration-lts-5.14.nix | 8149 ++++++++++++++++++++ .../haskell-modules/configuration-lts-5.15.nix | 8129 +++++++++++++++++++ .../haskell-modules/configuration-lts-5.2.nix | 91 + .../haskell-modules/configuration-lts-5.3.nix | 93 + .../haskell-modules/configuration-lts-5.4.nix | 97 + .../haskell-modules/configuration-lts-5.5.nix | 98 + .../haskell-modules/configuration-lts-5.6.nix | 99 + .../haskell-modules/configuration-lts-5.7.nix | 100 + .../haskell-modules/configuration-lts-5.8.nix | 102 + .../haskell-modules/configuration-lts-5.9.nix | 108 + .../haskell-modules/hackage-packages.nix | 3948 +++++++--- 88 files changed, 23738 insertions(+), 1015 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.14.nix create mode 100644 pkgs/development/haskell-modules/configuration-lts-5.15.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 5d5e07c3a481c..20e87e83c293f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7880,6 +7910,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8187,6 +8218,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 994ca185089c7..8142d61db1ff7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7880,6 +7910,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8187,6 +8218,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 13288cf6eefd4..93da6c8ea2692 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7880,6 +7910,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8187,6 +8218,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index a2a328b65c003..139587df0ca4c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3376,6 +3384,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4423,6 +4432,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4790,6 +4800,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4849,6 +4860,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4903,6 +4915,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5071,6 +5084,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5107,6 +5121,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5440,6 +5455,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5538,6 +5554,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5808,6 +5825,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5971,6 +5989,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -6000,6 +6019,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6414,6 +6434,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6513,6 +6534,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6609,6 +6631,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6617,6 +6640,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6655,6 +6679,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6830,6 +6855,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6846,6 +6872,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6876,6 +6903,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6976,6 +7004,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7129,6 +7158,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7880,6 +7910,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8187,6 +8218,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8213,6 +8245,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8221,6 +8254,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8311,6 +8345,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8839,6 +8874,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 8947dce5d90ca..ebf71b233b281 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3375,6 +3383,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4420,6 +4429,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4787,6 +4797,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4846,6 +4857,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4900,6 +4912,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5068,6 +5081,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5104,6 +5118,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5437,6 +5452,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5535,6 +5551,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5805,6 +5822,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5968,6 +5986,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5997,6 +6016,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6411,6 +6431,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6510,6 +6531,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6606,6 +6628,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6614,6 +6637,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6652,6 +6676,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6827,6 +6852,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6843,6 +6869,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6873,6 +6900,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6973,6 +7001,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7126,6 +7155,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7876,6 +7906,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8183,6 +8214,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8209,6 +8241,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8217,6 +8250,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8307,6 +8341,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8835,6 +8870,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 74c95cb7400d0..98602756736a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -822,6 +823,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1346,6 +1348,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2035,6 +2038,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2116,6 +2120,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2191,6 +2196,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2502,6 +2508,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2645,6 +2652,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3375,6 +3383,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4420,6 +4429,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4787,6 +4797,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4846,6 +4857,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4900,6 +4912,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5068,6 +5081,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5104,6 +5118,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5437,6 +5452,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5535,6 +5551,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5805,6 +5822,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5968,6 +5986,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5997,6 +6016,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6411,6 +6431,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6510,6 +6531,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6606,6 +6628,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6614,6 +6637,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6652,6 +6676,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6827,6 +6852,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6843,6 +6869,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6873,6 +6900,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6973,6 +7001,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7126,6 +7155,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7876,6 +7906,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8183,6 +8214,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8209,6 +8241,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8217,6 +8250,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8307,6 +8341,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8835,6 +8870,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 1e44d58aefdcd..36e7461a8cf6d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -821,6 +822,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1345,6 +1347,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2034,6 +2037,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2115,6 +2119,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2190,6 +2195,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2501,6 +2507,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2644,6 +2651,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3374,6 +3382,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4418,6 +4427,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4785,6 +4795,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4844,6 +4855,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4898,6 +4910,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5066,6 +5079,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5102,6 +5116,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5435,6 +5450,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5533,6 +5549,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5803,6 +5820,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5966,6 +5984,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5995,6 +6014,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6409,6 +6429,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6508,6 +6529,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6604,6 +6626,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6612,6 +6635,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6650,6 +6674,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6825,6 +6850,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6841,6 +6867,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6871,6 +6898,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6971,6 +6999,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7124,6 +7153,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7873,6 +7903,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8180,6 +8211,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8206,6 +8238,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8214,6 +8247,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8304,6 +8338,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8832,6 +8867,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f5075c4afc294..5b1578fd4c3d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -485,6 +485,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -821,6 +822,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1345,6 +1347,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2034,6 +2037,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2115,6 +2119,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_3"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2190,6 +2195,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2501,6 +2507,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2644,6 +2651,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3374,6 +3382,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_9"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4418,6 +4427,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4785,6 +4795,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4844,6 +4855,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4898,6 +4910,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5066,6 +5079,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5102,6 +5116,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5435,6 +5450,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5533,6 +5549,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5803,6 +5820,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5966,6 +5984,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_5_0_1"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5995,6 +6014,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6409,6 +6429,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6508,6 +6529,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6604,6 +6626,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6612,6 +6635,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6650,6 +6674,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6825,6 +6850,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6841,6 +6867,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6871,6 +6898,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6971,6 +6999,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7124,6 +7153,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7873,6 +7903,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8180,6 +8211,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8206,6 +8238,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8214,6 +8247,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8304,6 +8338,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8832,6 +8867,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index b1e9391c5f862..ee69deb9f1b80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2028,6 +2031,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2109,6 +2113,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2184,6 +2189,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2494,6 +2500,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2637,6 +2644,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3366,6 +3374,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4410,6 +4419,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4776,6 +4786,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4835,6 +4846,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4889,6 +4901,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5057,6 +5070,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5093,6 +5107,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5426,6 +5441,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5524,6 +5540,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5794,6 +5811,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5957,6 +5975,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5986,6 +6005,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6400,6 +6420,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6499,6 +6520,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6595,6 +6617,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6603,6 +6626,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6641,6 +6665,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6816,6 +6841,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6832,6 +6858,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6862,6 +6889,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6962,6 +6990,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7115,6 +7144,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7862,6 +7892,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8169,6 +8200,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8195,6 +8227,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8203,6 +8236,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8293,6 +8327,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8820,6 +8855,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 4f833f432c8d9..00e5a44a804a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2027,6 +2030,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2108,6 +2112,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2183,6 +2188,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2492,6 +2498,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2635,6 +2642,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3363,6 +3371,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4406,6 +4415,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4770,6 +4780,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4829,6 +4840,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4883,6 +4895,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5051,6 +5064,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5087,6 +5101,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5420,6 +5435,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5518,6 +5534,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5788,6 +5805,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5950,6 +5968,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5979,6 +5998,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6393,6 +6413,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6492,6 +6513,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6588,6 +6610,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6596,6 +6619,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6634,6 +6658,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6809,6 +6834,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6825,6 +6851,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6855,6 +6882,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6955,6 +6983,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7108,6 +7137,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7854,6 +7884,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8160,6 +8191,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8186,6 +8218,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8194,6 +8227,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8283,6 +8317,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8807,6 +8842,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 988c7e3714a92..9a04c8e8c94ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3355,6 +3363,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4395,6 +4404,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4759,6 +4769,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4818,6 +4829,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4872,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5035,6 +5048,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5071,6 +5085,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5404,6 +5419,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5502,6 +5518,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5771,6 +5788,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5933,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5962,6 +5981,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6374,6 +6394,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6472,6 +6493,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6568,6 +6590,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6576,6 +6599,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6614,6 +6638,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6789,6 +6814,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6805,6 +6831,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6835,6 +6862,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6935,6 +6963,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7087,6 +7116,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7831,6 +7861,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8137,6 +8168,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8162,6 +8194,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8170,6 +8203,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8258,6 +8292,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8779,6 +8814,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 0fe6da3b53689..33d0a5b299bab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4394,6 +4403,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4758,6 +4768,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4817,6 +4828,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4871,6 +4883,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5033,6 +5046,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5068,6 +5082,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5401,6 +5416,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5498,6 +5514,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5767,6 +5784,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5929,6 +5947,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5958,6 +5977,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6370,6 +6390,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6468,6 +6489,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6564,6 +6586,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6572,6 +6595,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6610,6 +6634,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6785,6 +6810,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6801,6 +6827,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6831,6 +6858,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6931,6 +6959,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7083,6 +7112,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7827,6 +7857,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8133,6 +8164,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8158,6 +8190,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8166,6 +8199,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8254,6 +8288,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8775,6 +8810,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 6523554f05222..3fcd44271df66 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4393,6 +4402,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4757,6 +4767,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4816,6 +4827,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4870,6 +4882,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5032,6 +5045,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5067,6 +5081,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5400,6 +5415,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5497,6 +5513,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5766,6 +5783,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5928,6 +5946,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5957,6 +5976,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6369,6 +6389,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6467,6 +6488,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6563,6 +6585,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6571,6 +6594,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_7"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6609,6 +6633,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6784,6 +6809,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6800,6 +6826,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6830,6 +6857,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6930,6 +6958,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7082,6 +7111,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7826,6 +7856,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8132,6 +8163,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8157,6 +8189,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8165,6 +8198,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8253,6 +8287,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8774,6 +8809,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 9b192de01660c..1cedbc8be952c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3354,6 +3362,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4392,6 +4401,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4756,6 +4766,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4815,6 +4826,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4869,6 +4881,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5031,6 +5044,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5066,6 +5080,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5399,6 +5414,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5496,6 +5512,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5765,6 +5782,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5927,6 +5945,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5956,6 +5975,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6368,6 +6388,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6466,6 +6487,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6562,6 +6584,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6570,6 +6593,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6608,6 +6632,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6783,6 +6808,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6799,6 +6825,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6829,6 +6856,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6929,6 +6957,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7081,6 +7110,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7825,6 +7855,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8131,6 +8162,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8156,6 +8188,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8164,6 +8197,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8251,6 +8285,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8772,6 +8807,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index a2021991e508d..3483e76ea3175 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -482,6 +482,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -815,6 +816,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2023,6 +2026,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2103,6 +2107,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2178,6 +2183,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2485,6 +2491,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2628,6 +2635,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3351,6 +3359,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4389,6 +4398,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4753,6 +4763,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4812,6 +4823,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4866,6 +4878,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5028,6 +5041,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5063,6 +5077,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5396,6 +5411,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5493,6 +5509,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5762,6 +5779,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5860,6 +5878,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_1"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5923,6 +5942,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5952,6 +5972,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6364,6 +6385,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6462,6 +6484,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6558,6 +6581,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6566,6 +6590,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6604,6 +6629,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6779,6 +6805,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6795,6 +6822,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6825,6 +6853,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6925,6 +6954,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7076,6 +7106,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7820,6 +7851,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8126,6 +8158,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8151,6 +8184,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8159,6 +8193,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8246,6 +8281,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8767,6 +8803,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index b5fdfd2a4aa33..5cc0f9fffde77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -482,6 +482,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -815,6 +816,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1339,6 +1341,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2022,6 +2025,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2101,6 +2105,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2176,6 +2181,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2482,6 +2488,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2625,6 +2632,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3347,6 +3355,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4385,6 +4394,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4749,6 +4759,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4808,6 +4819,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4862,6 +4874,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5024,6 +5037,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5059,6 +5073,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5392,6 +5407,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5489,6 +5505,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5758,6 +5775,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5856,6 +5874,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5919,6 +5938,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5948,6 +5968,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6358,6 +6379,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6456,6 +6478,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6552,6 +6575,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6560,6 +6584,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6598,6 +6623,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6773,6 +6799,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6789,6 +6816,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6819,6 +6847,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6919,6 +6948,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7069,6 +7099,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7813,6 +7844,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8117,6 +8149,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8142,6 +8175,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8150,6 +8184,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8237,6 +8272,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8758,6 +8794,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 2ce53895ab7be..7ac7464aa4529 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -817,6 +818,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1342,6 +1344,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2027,6 +2030,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2107,6 +2111,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2182,6 +2187,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2490,6 +2496,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2633,6 +2640,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3361,6 +3369,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4403,6 +4412,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4767,6 +4777,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4826,6 +4837,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4880,6 +4892,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5048,6 +5061,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5084,6 +5098,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5417,6 +5432,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5515,6 +5531,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5785,6 +5802,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5947,6 +5965,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5976,6 +5995,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6390,6 +6410,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6488,6 +6509,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6584,6 +6606,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6592,6 +6615,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6630,6 +6654,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6805,6 +6830,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6821,6 +6847,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6851,6 +6878,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6951,6 +6979,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7103,6 +7132,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7848,6 +7878,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8154,6 +8185,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8180,6 +8212,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8188,6 +8221,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8277,6 +8311,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8801,6 +8836,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 5092c1f02a788..b5e1d26ff190c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2026,6 +2029,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2106,6 +2110,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2181,6 +2186,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2489,6 +2495,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2632,6 +2639,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3359,6 +3367,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4400,6 +4409,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4764,6 +4774,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4823,6 +4834,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4877,6 +4889,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5045,6 +5058,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5081,6 +5095,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5414,6 +5429,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5512,6 +5528,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5782,6 +5799,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5944,6 +5962,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5973,6 +5992,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6386,6 +6406,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6484,6 +6505,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6580,6 +6602,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6588,6 +6611,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6626,6 +6650,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6801,6 +6826,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6817,6 +6843,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6847,6 +6874,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6947,6 +6975,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7099,6 +7128,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7844,6 +7874,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8150,6 +8181,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8176,6 +8208,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8184,6 +8217,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8272,6 +8306,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8796,6 +8831,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index de2508852e7ed..5e5d5ff2a2f58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3358,6 +3366,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4399,6 +4408,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_1"; @@ -4763,6 +4773,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4822,6 +4833,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4876,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5044,6 +5057,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5080,6 +5094,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5413,6 +5428,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5511,6 +5527,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5781,6 +5798,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5943,6 +5961,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5972,6 +5991,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6385,6 +6405,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6483,6 +6504,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6579,6 +6601,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6587,6 +6610,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6625,6 +6649,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6800,6 +6825,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6816,6 +6842,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6846,6 +6873,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6946,6 +6974,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7098,6 +7127,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7843,6 +7873,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8149,6 +8180,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8175,6 +8207,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8183,6 +8216,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8271,6 +8305,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8793,6 +8828,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 72af4fc6c77e3..345a0efa8f457 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3358,6 +3366,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4399,6 +4408,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4763,6 +4773,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4822,6 +4833,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4876,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5039,6 +5052,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5075,6 +5089,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5408,6 +5423,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5506,6 +5522,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5776,6 +5793,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5938,6 +5956,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_11_1"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5967,6 +5986,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6380,6 +6400,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6478,6 +6499,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6574,6 +6596,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6582,6 +6605,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6620,6 +6644,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6795,6 +6820,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6811,6 +6837,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6841,6 +6868,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6941,6 +6969,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7093,6 +7122,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7838,6 +7868,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8144,6 +8175,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8170,6 +8202,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8178,6 +8211,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8266,6 +8300,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8788,6 +8823,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index b7b754a984f37..4b1d4e7c9a241 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3356,6 +3364,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4396,6 +4405,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4760,6 +4770,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4819,6 +4830,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_4"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4873,6 +4885,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5036,6 +5049,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5072,6 +5086,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5405,6 +5420,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5503,6 +5519,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5772,6 +5789,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5934,6 +5952,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5963,6 +5982,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6376,6 +6396,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6474,6 +6495,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6570,6 +6592,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6578,6 +6601,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6616,6 +6640,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6791,6 +6816,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6807,6 +6833,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6837,6 +6864,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6937,6 +6965,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7089,6 +7118,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7834,6 +7864,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8140,6 +8171,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8166,6 +8198,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8174,6 +8207,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8262,6 +8296,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8783,6 +8818,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 6cb77fd1f9bc3..54c9bc0f5bf2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -483,6 +483,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -816,6 +817,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1341,6 +1343,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2025,6 +2028,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = dontDistribute super."cayley-client"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2105,6 +2109,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2180,6 +2185,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2488,6 +2494,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2631,6 +2638,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3355,6 +3363,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_10_0_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4395,6 +4404,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4759,6 +4769,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = dontDistribute super."hstatistics"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4818,6 +4829,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_5"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4872,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5035,6 +5048,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5071,6 +5085,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5404,6 +5419,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5502,6 +5518,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5771,6 +5788,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5933,6 +5951,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_6_0_2"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_12"; "monad-logger-json" = dontDistribute super."monad-logger-json"; "monad-logger-syslog" = dontDistribute super."monad-logger-syslog"; @@ -5962,6 +5981,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib" = dontDistribute super."monadLib"; @@ -6375,6 +6395,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6473,6 +6494,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6569,6 +6591,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6577,6 +6600,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_1_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6615,6 +6639,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6790,6 +6815,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6806,6 +6832,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = dontDistribute super."prednote"; @@ -6836,6 +6863,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_5_4_0"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6936,6 +6964,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7088,6 +7117,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7833,6 +7863,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8139,6 +8170,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8165,6 +8197,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8173,6 +8206,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8261,6 +8295,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8782,6 +8817,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index fa5928d6b7234..1e4b541f52465 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1333,6 +1335,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2013,6 +2016,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2092,6 +2096,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2166,6 +2171,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2470,6 +2476,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2613,6 +2620,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3333,6 +3341,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4368,6 +4377,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4731,6 +4741,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4790,6 +4801,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4844,6 +4856,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5001,6 +5014,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5036,6 +5050,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5365,6 +5380,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5459,6 +5475,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5727,6 +5744,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5824,6 +5842,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5887,6 +5906,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5914,6 +5934,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6318,6 +6339,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6416,6 +6438,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6511,6 +6534,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6519,6 +6543,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6557,6 +6582,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6731,6 +6757,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6747,6 +6774,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6776,6 +6804,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6877,6 +6906,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7027,6 +7057,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7766,6 +7797,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8068,6 +8100,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8093,6 +8126,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8101,6 +8135,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8188,6 +8223,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8708,6 +8744,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 8ff45e0c7df52..490801bae1b44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1333,6 +1335,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2012,6 +2015,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2091,6 +2095,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2165,6 +2170,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2469,6 +2475,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2612,6 +2619,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3332,6 +3340,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4367,6 +4376,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4730,6 +4740,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4789,6 +4800,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4843,6 +4855,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -5000,6 +5013,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5035,6 +5049,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5364,6 +5379,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5458,6 +5474,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5726,6 +5743,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5823,6 +5841,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5886,6 +5905,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5913,6 +5933,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6317,6 +6338,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6415,6 +6437,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6510,6 +6533,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6518,6 +6542,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6556,6 +6581,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6730,6 +6756,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6746,6 +6773,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6775,6 +6803,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6876,6 +6905,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7026,6 +7056,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7765,6 +7796,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8067,6 +8099,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8092,6 +8125,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8100,6 +8134,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8187,6 +8222,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8707,6 +8743,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3b13848d98a90..a9e84b655238c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2001,6 +2004,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2080,6 +2084,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2154,6 +2159,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2457,6 +2463,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2599,6 +2606,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3315,6 +3323,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4348,6 +4357,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4710,6 +4720,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4768,6 +4779,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4822,6 +4834,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4978,6 +4991,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5013,6 +5027,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5340,6 +5355,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5433,6 +5449,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5701,6 +5718,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5798,6 +5816,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5861,6 +5880,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5888,6 +5908,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6292,6 +6313,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6390,6 +6412,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6484,6 +6507,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6492,6 +6516,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6530,6 +6555,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6703,6 +6729,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6719,6 +6746,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6748,6 +6776,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6849,6 +6878,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6998,6 +7028,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7734,6 +7765,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8029,6 +8061,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8054,6 +8087,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8062,6 +8096,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8149,6 +8184,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8667,6 +8703,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 14570e607c83c..17f0dc577668c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2456,6 +2462,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2598,6 +2605,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4345,6 +4354,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4707,6 +4717,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4765,6 +4776,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4819,6 +4831,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4975,6 +4988,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5010,6 +5024,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5336,6 +5351,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5429,6 +5445,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5697,6 +5714,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5794,6 +5812,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5856,6 +5875,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5883,6 +5903,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6287,6 +6308,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6384,6 +6406,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6478,6 +6501,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6486,6 +6510,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6524,6 +6549,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6697,6 +6723,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6713,6 +6740,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6742,6 +6770,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6843,6 +6872,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6992,6 +7022,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7727,6 +7758,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8020,6 +8052,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8045,6 +8078,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8053,6 +8087,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8140,6 +8175,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8658,6 +8694,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 706e342f6b21f..248c9d5bdb3b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2456,6 +2462,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2598,6 +2605,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4345,6 +4354,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4707,6 +4717,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4765,6 +4776,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4819,6 +4831,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4975,6 +4988,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5010,6 +5024,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5336,6 +5351,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5429,6 +5445,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5697,6 +5714,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5794,6 +5812,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5856,6 +5875,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5883,6 +5903,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6287,6 +6308,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6384,6 +6406,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6478,6 +6501,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6486,6 +6510,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6524,6 +6549,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6697,6 +6723,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6713,6 +6740,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6742,6 +6770,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6843,6 +6872,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6992,6 +7022,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7726,6 +7757,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8019,6 +8051,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8044,6 +8077,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8052,6 +8086,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8139,6 +8174,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8657,6 +8693,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 7cad852e803fd..f2b2e400ab79d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2456,6 +2462,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2598,6 +2605,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3314,6 +3322,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4344,6 +4353,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4706,6 +4716,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4764,6 +4775,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4818,6 +4830,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4973,6 +4986,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5008,6 +5022,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5334,6 +5349,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5427,6 +5443,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5695,6 +5712,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5792,6 +5810,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5854,6 +5873,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5881,6 +5901,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6285,6 +6306,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6382,6 +6404,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6476,6 +6499,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6484,6 +6508,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6522,6 +6547,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6695,6 +6721,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6711,6 +6738,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6740,6 +6768,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6841,6 +6870,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6990,6 +7020,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7724,6 +7755,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8017,6 +8049,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8042,6 +8075,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8050,6 +8084,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8137,6 +8172,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8655,6 +8691,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 951fd6c2f8d6e..aabae0822bf47 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2456,6 +2462,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2598,6 +2605,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3313,6 +3321,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4343,6 +4352,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4704,6 +4714,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4762,6 +4773,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4816,6 +4828,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4971,6 +4984,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5006,6 +5020,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5332,6 +5347,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5425,6 +5441,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5693,6 +5710,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5790,6 +5808,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5852,6 +5871,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5879,6 +5899,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6283,6 +6304,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6380,6 +6402,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6474,6 +6497,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6482,6 +6506,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6520,6 +6545,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6693,6 +6719,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6709,6 +6736,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6738,6 +6766,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6839,6 +6868,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6988,6 +7018,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7721,6 +7752,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8014,6 +8046,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8039,6 +8072,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8047,6 +8081,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8134,6 +8169,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8652,6 +8688,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 8adbc6fec84cc..b1f729fc28fd8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2079,6 +2083,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2153,6 +2158,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2456,6 +2462,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2598,6 +2605,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3312,6 +3320,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4342,6 +4351,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4703,6 +4713,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4761,6 +4772,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4815,6 +4827,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4970,6 +4983,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5005,6 +5019,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5331,6 +5346,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5424,6 +5440,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5692,6 +5709,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5789,6 +5807,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5851,6 +5870,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5877,6 +5897,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6281,6 +6302,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6378,6 +6400,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6472,6 +6495,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6480,6 +6504,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6518,6 +6543,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6691,6 +6717,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6707,6 +6734,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6736,6 +6764,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6837,6 +6866,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6986,6 +7016,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7719,6 +7750,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8011,6 +8043,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8036,6 +8069,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8044,6 +8078,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8131,6 +8166,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8649,6 +8685,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 3e319aa5ed43d..723d0c93c377f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2000,6 +2003,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2078,6 +2082,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2152,6 +2157,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2324,6 +2330,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2454,6 +2461,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2596,6 +2604,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3308,6 +3317,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4338,6 +4348,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4699,6 +4710,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4757,6 +4769,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4811,6 +4824,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4966,6 +4980,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5001,6 +5016,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5327,6 +5343,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5419,6 +5436,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5687,6 +5705,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5784,6 +5803,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5846,6 +5866,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5872,6 +5893,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6276,6 +6298,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6373,6 +6396,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6467,6 +6491,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6475,6 +6500,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6513,6 +6539,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6686,6 +6713,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6702,6 +6730,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6731,6 +6760,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6832,6 +6862,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6981,6 +7012,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7714,6 +7746,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8006,6 +8039,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8031,6 +8065,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8039,6 +8074,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8126,6 +8162,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8644,6 +8681,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 0a58df9453524..eaf1fea3dae80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1998,6 +2001,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2076,6 +2080,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2150,6 +2155,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2322,6 +2328,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2452,6 +2459,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2594,6 +2602,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3304,6 +3313,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4334,6 +4344,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4695,6 +4706,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4753,6 +4765,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4807,6 +4820,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4962,6 +4976,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4997,6 +5012,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5323,6 +5339,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5415,6 +5432,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5683,6 +5701,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5780,6 +5799,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5842,6 +5862,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5868,6 +5889,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6271,6 +6293,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6368,6 +6391,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6462,6 +6486,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6470,6 +6495,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6508,6 +6534,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6681,6 +6708,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6697,6 +6725,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6726,6 +6755,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6827,6 +6857,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6976,6 +7007,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7709,6 +7741,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8001,6 +8034,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8026,6 +8060,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8034,6 +8069,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8121,6 +8157,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8639,6 +8676,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index e7a9357da6a46..073161b05b0cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2321,6 +2327,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2451,6 +2458,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2593,6 +2601,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3302,6 +3311,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4332,6 +4342,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4693,6 +4704,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4751,6 +4763,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4805,6 +4818,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4960,6 +4974,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4995,6 +5010,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5321,6 +5337,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5413,6 +5430,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5681,6 +5699,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5778,6 +5797,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5840,6 +5860,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5866,6 +5887,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6268,6 +6290,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6365,6 +6388,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6459,6 +6483,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6467,6 +6492,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6505,6 +6531,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6678,6 +6705,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6694,6 +6722,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6723,6 +6752,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6824,6 +6854,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6973,6 +7004,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7706,6 +7738,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7997,6 +8030,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8022,6 +8056,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8030,6 +8065,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8117,6 +8153,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8635,6 +8672,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index de4b6c8fbb8a9..de94de5ae3c22 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2321,6 +2327,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2451,6 +2458,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2593,6 +2601,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3301,6 +3310,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4331,6 +4341,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4692,6 +4703,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4750,6 +4762,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5_1"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4804,6 +4817,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4959,6 +4973,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4994,6 +5009,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5320,6 +5336,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5412,6 +5429,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5680,6 +5698,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5776,6 +5795,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5838,6 +5858,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5864,6 +5885,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6266,6 +6288,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6363,6 +6386,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6457,6 +6481,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6465,6 +6490,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6503,6 +6529,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6676,6 +6703,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6692,6 +6720,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6721,6 +6750,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6822,6 +6852,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6971,6 +7002,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7703,6 +7735,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7994,6 +8027,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8019,6 +8053,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8027,6 +8062,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8114,6 +8150,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8632,6 +8669,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index b1785347434ba..ce113fd1467a6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2009,6 +2012,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2088,6 +2092,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2162,6 +2167,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2466,6 +2472,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2609,6 +2616,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3329,6 +3337,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4364,6 +4373,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4727,6 +4737,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4786,6 +4797,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4840,6 +4852,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4997,6 +5010,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5032,6 +5046,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5361,6 +5376,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5455,6 +5471,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5723,6 +5740,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5820,6 +5838,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5883,6 +5902,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5910,6 +5930,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6314,6 +6335,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6412,6 +6434,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6507,6 +6530,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6515,6 +6539,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6553,6 +6578,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6727,6 +6753,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6743,6 +6770,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6772,6 +6800,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6873,6 +6902,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7023,6 +7053,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7762,6 +7793,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8064,6 +8096,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8089,6 +8122,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8097,6 +8131,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8184,6 +8219,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8704,6 +8740,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 13fd59373ee59..dae40ae5b4e2a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2592,6 +2600,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4330,6 +4340,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4691,6 +4702,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4749,6 +4761,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_1"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4803,6 +4816,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4958,6 +4972,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4993,6 +5008,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5319,6 +5335,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5411,6 +5428,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5679,6 +5697,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5775,6 +5794,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5837,6 +5857,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5863,6 +5884,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6265,6 +6287,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6362,6 +6385,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6456,6 +6480,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6464,6 +6489,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6502,6 +6528,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6674,6 +6701,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6690,6 +6718,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6719,6 +6748,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6820,6 +6850,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6969,6 +7000,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7700,6 +7732,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7991,6 +8024,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8016,6 +8050,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8024,6 +8059,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8111,6 +8147,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8629,6 +8666,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 9718fd66f0860..36373c0e79abb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2592,6 +2600,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4330,6 +4340,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4691,6 +4702,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4749,6 +4761,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4803,6 +4816,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4958,6 +4972,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4993,6 +5008,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5319,6 +5335,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5411,6 +5428,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5679,6 +5697,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5775,6 +5794,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5837,6 +5857,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5863,6 +5884,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6265,6 +6287,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6362,6 +6385,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6456,6 +6480,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6464,6 +6489,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6502,6 +6528,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6673,6 +6700,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6689,6 +6717,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6718,6 +6747,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6819,6 +6849,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6968,6 +6999,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7699,6 +7731,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7990,6 +8023,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8015,6 +8049,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8023,6 +8058,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8110,6 +8146,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8628,6 +8665,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8979,6 +9017,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index c9c1be69df44c..638c1833dc367 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -1997,6 +2000,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2075,6 +2079,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2149,6 +2154,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2320,6 +2326,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2450,6 +2457,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2592,6 +2600,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3300,6 +3309,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4329,6 +4339,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4690,6 +4701,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4748,6 +4760,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_7_2"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4802,6 +4815,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4957,6 +4971,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4992,6 +5007,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5318,6 +5334,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5410,6 +5427,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5678,6 +5696,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5774,6 +5793,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5836,6 +5856,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5862,6 +5883,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6264,6 +6286,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6361,6 +6384,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6455,6 +6479,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6463,6 +6488,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_6"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6501,6 +6527,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6672,6 +6699,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6688,6 +6716,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6717,6 +6746,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6818,6 +6848,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6967,6 +6998,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7698,6 +7730,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7989,6 +8022,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8014,6 +8048,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8022,6 +8057,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8109,6 +8145,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8627,6 +8664,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8978,6 +9016,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 5548314dff3fa..7bc9200c11097 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2009,6 +2012,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2088,6 +2092,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2162,6 +2167,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2466,6 +2472,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2609,6 +2616,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3328,6 +3336,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4363,6 +4372,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4726,6 +4736,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4785,6 +4796,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4839,6 +4851,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4995,6 +5008,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5030,6 +5044,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5359,6 +5374,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5453,6 +5469,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5721,6 +5738,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5818,6 +5836,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5881,6 +5900,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5908,6 +5928,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6312,6 +6333,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6410,6 +6432,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6505,6 +6528,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6513,6 +6537,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6551,6 +6576,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6725,6 +6751,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6741,6 +6768,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6770,6 +6798,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6871,6 +6900,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7021,6 +7051,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7760,6 +7791,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8062,6 +8094,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8087,6 +8120,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8095,6 +8129,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8182,6 +8217,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8702,6 +8738,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 9becf92e39a15..17cfdfa1bccdc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2008,6 +2011,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2087,6 +2091,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2161,6 +2166,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2465,6 +2471,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2608,6 +2615,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3327,6 +3335,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4362,6 +4371,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4725,6 +4735,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4784,6 +4795,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4838,6 +4850,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4994,6 +5007,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5029,6 +5043,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5358,6 +5373,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5452,6 +5468,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5720,6 +5737,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5817,6 +5835,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5880,6 +5899,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5907,6 +5927,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6311,6 +6332,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6409,6 +6431,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6503,6 +6526,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6511,6 +6535,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6549,6 +6574,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6723,6 +6749,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6739,6 +6766,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6768,6 +6796,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6869,6 +6898,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7019,6 +7049,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7757,6 +7788,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8059,6 +8091,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8084,6 +8117,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8092,6 +8126,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8179,6 +8214,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8699,6 +8735,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index c770cc19433aa..54bdf226282f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1332,6 +1334,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2008,6 +2011,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2087,6 +2091,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2161,6 +2166,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2464,6 +2470,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2607,6 +2614,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3326,6 +3334,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4361,6 +4370,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4724,6 +4734,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4783,6 +4794,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4837,6 +4849,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4993,6 +5006,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5028,6 +5042,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5357,6 +5372,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5451,6 +5467,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5719,6 +5736,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5816,6 +5834,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5879,6 +5898,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5906,6 +5926,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6310,6 +6331,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6408,6 +6430,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6502,6 +6525,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6510,6 +6534,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6548,6 +6573,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6722,6 +6748,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6738,6 +6765,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6767,6 +6795,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6868,6 +6897,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7018,6 +7048,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7756,6 +7787,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8058,6 +8090,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8083,6 +8116,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8091,6 +8125,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8178,6 +8213,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8698,6 +8734,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index b18878eda989b..53a6ba088d394 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -480,6 +480,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -810,6 +811,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1330,6 +1332,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2005,6 +2008,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2084,6 +2088,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2158,6 +2163,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2461,6 +2467,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2604,6 +2611,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3323,6 +3331,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4356,6 +4365,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4719,6 +4729,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4778,6 +4789,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4832,6 +4844,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4988,6 +5001,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5023,6 +5037,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5352,6 +5367,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5446,6 +5462,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5714,6 +5731,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5811,6 +5829,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5874,6 +5893,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5901,6 +5921,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6304,6 +6325,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6402,6 +6424,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6496,6 +6519,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6504,6 +6528,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6542,6 +6567,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6716,6 +6742,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6732,6 +6759,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6761,6 +6789,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6862,6 +6891,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7012,6 +7042,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7750,6 +7781,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8052,6 +8084,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8077,6 +8110,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8085,6 +8119,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8172,6 +8207,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8690,6 +8726,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index a310f5c227974..4bc47cb0bd844 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -809,6 +810,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1329,6 +1331,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2004,6 +2007,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2083,6 +2087,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2157,6 +2162,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2460,6 +2466,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2603,6 +2610,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3322,6 +3330,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4355,6 +4364,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4718,6 +4728,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4777,6 +4788,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4831,6 +4843,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4987,6 +5000,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5022,6 +5036,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5351,6 +5366,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5445,6 +5461,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5713,6 +5730,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5810,6 +5828,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5873,6 +5892,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5900,6 +5920,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6304,6 +6325,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6402,6 +6424,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6496,6 +6519,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6504,6 +6528,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6542,6 +6567,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6716,6 +6742,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6732,6 +6759,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6761,6 +6789,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6862,6 +6891,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7012,6 +7042,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7750,6 +7781,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8052,6 +8084,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8077,6 +8110,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8085,6 +8119,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8172,6 +8207,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8690,6 +8726,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 6f38b78b48a90..d9fbbb3de7222 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2003,6 +2006,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2082,6 +2086,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2156,6 +2161,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2459,6 +2465,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2602,6 +2609,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3320,6 +3328,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4353,6 +4362,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4716,6 +4726,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4775,6 +4786,7 @@ self: super: { "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-date" = doDistribute super."http-date_0_0_6"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4829,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4985,6 +4998,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5020,6 +5034,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5349,6 +5364,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5443,6 +5459,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5711,6 +5728,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5808,6 +5826,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5871,6 +5890,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5898,6 +5918,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6302,6 +6323,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6400,6 +6422,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6494,6 +6517,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6502,6 +6526,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6540,6 +6565,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6714,6 +6740,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6730,6 +6757,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6759,6 +6787,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6860,6 +6889,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7010,6 +7040,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7746,6 +7777,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8046,6 +8078,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8071,6 +8104,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8079,6 +8113,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8166,6 +8201,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8684,6 +8720,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index e082c07865a39..6a5856b036bc2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -479,6 +479,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -808,6 +809,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1328,6 +1330,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; @@ -2001,6 +2004,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cautious-file" = dontDistribute super."cautious-file"; "cayley-client" = dontDistribute super."cayley-client"; @@ -2080,6 +2084,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2154,6 +2159,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2457,6 +2463,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2600,6 +2607,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3316,6 +3324,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_11"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4349,6 +4358,7 @@ self: super: { "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; "hinotify" = doDistribute super."hinotify_0_3_7"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_2"; @@ -4711,6 +4721,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstatsd" = dontDistribute super."hstatsd"; @@ -4769,6 +4780,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_5"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4823,6 +4835,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4979,6 +4992,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -5014,6 +5028,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = dontDistribute super."invariant"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5343,6 +5358,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = dontDistribute super."largeword"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5436,6 +5452,7 @@ self: super: { "librandomorg" = dontDistribute super."librandomorg"; "librato" = dontDistribute super."librato"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5704,6 +5721,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5801,6 +5819,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_8_2"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5864,6 +5883,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-journal" = doDistribute super."monad-journal_0_7"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_1"; "monad-loops" = doDistribute super."monad-loops_0_4_2_1"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; @@ -5891,6 +5911,7 @@ self: super: { "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; "monad-unlift" = dontDistribute super."monad-unlift"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -6295,6 +6316,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "openssl-streams" = dontDistribute super."openssl-streams"; @@ -6393,6 +6415,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6487,6 +6510,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6495,6 +6519,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_1_5"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6533,6 +6558,7 @@ self: super: { "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6707,6 +6733,7 @@ self: super: { "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; "postgresql-simple-url" = dontDistribute super."postgresql-simple-url"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6723,6 +6750,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_32_0_6"; @@ -6752,6 +6780,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6853,6 +6882,7 @@ self: super: { "purescript" = dontDistribute super."purescript"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -7003,6 +7033,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7739,6 +7770,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -8035,6 +8067,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -8060,6 +8093,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -8068,6 +8102,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_1_0"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -8155,6 +8190,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpattern" = dontDistribute super."testpattern"; @@ -8673,6 +8709,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index dc44bbbcf456f..e69cfb6680b5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -797,6 +798,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1304,6 +1306,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1947,6 +1950,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2022,6 +2026,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2070,6 +2075,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2094,6 +2100,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2262,6 +2269,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2392,6 +2400,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2531,6 +2540,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3219,6 +3229,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4236,6 +4247,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4594,6 +4606,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4650,6 +4663,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4703,6 +4717,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4850,6 +4865,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4884,6 +4900,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5194,6 +5211,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5282,6 +5300,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5544,6 +5563,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5637,6 +5657,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5697,6 +5718,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5720,6 +5742,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5819,6 +5843,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6112,6 +6137,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6206,6 +6232,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6298,6 +6325,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6306,6 +6334,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6342,6 +6371,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6507,6 +6537,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6523,6 +6554,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6552,6 +6584,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6652,6 +6685,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_2_0"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6800,6 +6834,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7527,6 +7562,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7808,6 +7844,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7832,6 +7869,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7840,6 +7878,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7927,6 +7966,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8114,6 +8154,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8431,6 +8472,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8776,6 +8818,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8818,6 +8861,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 564fca0b8dfa8..28c84d54ed93f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -797,6 +798,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1303,6 +1305,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1946,6 +1949,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2021,6 +2025,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2069,6 +2074,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2093,6 +2099,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2261,6 +2268,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2391,6 +2399,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2530,6 +2539,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3217,6 +3227,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4234,6 +4245,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4592,6 +4604,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4648,6 +4661,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4701,6 +4715,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4848,6 +4863,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4882,6 +4898,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5192,6 +5209,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5280,6 +5298,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5541,6 +5560,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5634,6 +5654,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5694,6 +5715,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5717,6 +5739,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5816,6 +5840,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5837,6 +5862,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6108,6 +6134,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6202,6 +6229,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6294,6 +6322,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6302,6 +6331,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6338,6 +6368,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6502,6 +6533,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6518,6 +6550,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6547,6 +6580,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6647,6 +6681,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_3_0"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6795,6 +6830,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7521,6 +7557,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7802,6 +7839,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7826,6 +7864,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7834,6 +7873,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7921,6 +7961,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8108,6 +8149,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8425,6 +8467,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8769,6 +8812,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8811,6 +8855,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 80084167d43a8..9263d961f7050 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1936,6 +1939,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2011,6 +2015,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2059,6 +2064,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2083,6 +2089,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2251,6 +2258,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2380,6 +2388,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2519,6 +2528,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2602,6 +2612,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2609,12 +2620,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3165,6 +3178,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3197,6 +3211,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4209,6 +4224,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4565,6 +4581,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4621,6 +4638,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4674,6 +4692,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4819,6 +4838,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4853,6 +4873,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5054,6 +5075,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5160,6 +5182,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5246,6 +5269,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5507,6 +5531,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5599,6 +5624,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5659,6 +5685,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5682,6 +5709,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5780,6 +5809,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5801,6 +5831,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6069,6 +6100,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6163,6 +6195,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6254,6 +6287,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6262,6 +6296,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6298,6 +6333,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6461,6 +6497,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6476,6 +6513,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6503,6 +6541,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6602,6 +6641,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6749,6 +6789,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7472,6 +7513,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7751,6 +7793,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7775,6 +7818,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7783,6 +7827,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7866,6 +7911,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8053,6 +8099,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8367,6 +8414,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8539,6 +8587,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8704,6 +8753,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8746,6 +8796,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8802,6 +8853,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index a7a66f3782424..4a0c8ae04f264 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2010,6 +2014,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2058,6 +2063,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2082,6 +2088,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2250,6 +2257,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2379,6 +2387,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2518,6 +2527,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2601,6 +2611,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2608,12 +2619,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3163,6 +3176,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3195,6 +3209,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4207,6 +4222,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4563,6 +4579,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4619,6 +4636,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4672,6 +4690,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4817,6 +4836,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4851,6 +4871,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5052,6 +5073,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5158,6 +5180,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5244,6 +5267,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5505,6 +5529,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5597,6 +5622,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5657,6 +5683,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5680,6 +5707,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5778,6 +5807,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5799,6 +5829,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6067,6 +6098,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6161,6 +6193,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6252,6 +6285,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6260,6 +6294,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6295,6 +6330,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6458,6 +6494,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6473,6 +6510,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6500,6 +6538,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6599,6 +6638,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6746,6 +6786,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7469,6 +7510,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7748,6 +7790,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7772,6 +7815,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7780,6 +7824,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7863,6 +7908,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8050,6 +8096,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8364,6 +8411,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8536,6 +8584,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8701,6 +8750,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8743,6 +8793,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8799,6 +8850,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 928bc177e6aa7..f87cc10c8a90b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2009,6 +2013,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2057,6 +2062,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2081,6 +2087,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2249,6 +2256,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2378,6 +2386,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2517,6 +2526,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2600,6 +2610,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2607,12 +2618,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3162,6 +3175,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3194,6 +3208,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4205,6 +4220,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4561,6 +4577,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4617,6 +4634,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4670,6 +4688,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4815,6 +4834,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4849,6 +4869,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5050,6 +5071,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5156,6 +5178,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5242,6 +5265,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5503,6 +5527,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5595,6 +5620,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5655,6 +5681,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5678,6 +5705,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5776,6 +5805,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5797,6 +5827,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6065,6 +6096,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6159,6 +6191,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6249,6 +6282,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6257,6 +6291,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6292,6 +6327,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6455,6 +6491,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6470,6 +6507,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6497,6 +6535,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6596,6 +6635,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_3"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6743,6 +6783,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7466,6 +7507,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7745,6 +7787,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7769,6 +7812,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7777,6 +7821,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7859,6 +7904,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8045,6 +8091,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8359,6 +8406,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8531,6 +8579,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8696,6 +8745,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8738,6 +8788,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8794,6 +8845,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 45442c782c031..4d0b4b51f4bb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1935,6 +1938,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2009,6 +2013,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2057,6 +2062,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2081,6 +2087,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2249,6 +2256,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2378,6 +2386,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2517,6 +2526,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2600,6 +2610,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2607,12 +2618,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3162,6 +3175,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3194,6 +3208,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4204,6 +4219,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4560,6 +4576,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4616,6 +4633,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4669,6 +4687,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4814,6 +4833,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4848,6 +4868,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5049,6 +5070,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5155,6 +5177,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5240,6 +5263,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5501,6 +5525,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5593,6 +5618,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5653,6 +5679,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5676,6 +5703,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5774,6 +5803,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5795,6 +5825,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6063,6 +6094,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6157,6 +6189,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6246,6 +6279,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6254,6 +6288,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6289,6 +6324,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6452,6 +6488,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6467,6 +6504,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6494,6 +6532,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6593,6 +6632,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_4"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6740,6 +6780,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7463,6 +7504,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7742,6 +7784,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7766,6 +7809,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7774,6 +7818,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7856,6 +7901,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8042,6 +8088,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8356,6 +8403,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8527,6 +8575,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8692,6 +8741,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8734,6 +8784,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8790,6 +8841,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3a2e3d30d4eff..79c0bd0d594dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1115,6 +1117,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1298,6 +1301,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1932,6 +1936,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2006,6 +2011,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2054,6 +2060,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2078,6 +2085,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2246,6 +2254,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2374,6 +2383,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2513,6 +2523,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2596,17 +2607,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3156,6 +3172,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3188,6 +3205,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4198,6 +4216,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4554,6 +4573,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4609,6 +4629,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4662,6 +4683,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4807,6 +4829,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4841,6 +4864,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5042,6 +5066,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5148,6 +5173,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5233,6 +5259,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5494,6 +5521,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5586,6 +5614,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5646,6 +5675,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5669,6 +5699,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5767,6 +5799,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5788,6 +5821,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6056,6 +6090,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6150,6 +6185,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6239,6 +6275,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6247,6 +6284,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6282,6 +6320,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6445,6 +6484,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6460,6 +6500,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6487,6 +6528,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6586,6 +6628,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_5_4"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6733,6 +6776,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7456,6 +7500,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7735,6 +7780,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7759,6 +7805,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7767,6 +7814,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7849,6 +7897,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8035,6 +8084,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8349,6 +8399,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8520,6 +8571,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8684,6 +8736,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8726,6 +8779,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8782,6 +8836,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 49d22021c49a1..25a1f7d6102f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1115,6 +1117,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1298,6 +1301,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1932,6 +1936,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2006,6 +2011,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2054,6 +2060,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2078,6 +2085,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2246,6 +2254,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2374,6 +2383,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2513,6 +2523,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2596,17 +2607,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3156,6 +3172,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3188,6 +3205,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4197,6 +4215,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4552,6 +4571,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4607,6 +4627,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4659,6 +4680,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4804,6 +4826,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4838,6 +4861,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5039,6 +5063,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5145,6 +5170,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5230,6 +5256,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5491,6 +5518,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5583,6 +5611,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5643,6 +5672,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5666,6 +5696,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5764,6 +5796,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5785,6 +5818,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6053,6 +6087,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6147,6 +6182,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6236,6 +6272,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6244,6 +6281,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6279,6 +6317,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6442,6 +6481,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6457,6 +6497,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6484,6 +6525,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6583,6 +6625,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6730,6 +6773,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7452,6 +7496,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7731,6 +7776,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7755,6 +7801,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7763,6 +7810,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7845,6 +7893,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8031,6 +8080,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8345,6 +8395,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8516,6 +8567,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8680,6 +8732,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8722,6 +8775,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8778,6 +8832,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index c296a9132a120..b060ad42b00cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1931,6 +1935,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2005,6 +2010,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2053,6 +2059,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2077,6 +2084,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2245,6 +2253,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2373,6 +2382,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2512,6 +2522,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2595,17 +2606,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3154,6 +3170,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3186,6 +3203,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4194,6 +4212,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4549,6 +4568,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4604,6 +4624,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4656,6 +4677,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4801,6 +4823,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4835,6 +4858,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5036,6 +5060,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5141,6 +5166,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5226,6 +5252,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5487,6 +5514,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5578,6 +5606,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5638,6 +5667,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5661,6 +5691,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5759,6 +5791,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5780,6 +5813,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6048,6 +6082,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6142,6 +6177,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6231,6 +6267,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6239,6 +6276,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6274,6 +6312,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6436,6 +6475,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6451,6 +6491,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6478,6 +6519,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6577,6 +6619,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6724,6 +6767,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7445,6 +7489,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7724,6 +7769,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7748,6 +7794,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7756,6 +7803,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7836,6 +7884,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8021,6 +8070,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8335,6 +8385,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8506,6 +8557,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8670,6 +8722,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8712,6 +8765,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8768,6 +8822,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 501a11cc54cff..9d30a0fc1832d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1930,6 +1934,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2004,6 +2009,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2052,6 +2058,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2076,6 +2083,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2244,6 +2252,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2372,6 +2381,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2511,6 +2521,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2594,17 +2605,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3153,6 +3169,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3185,6 +3202,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4192,6 +4210,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4547,6 +4566,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4602,6 +4622,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4654,6 +4675,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4798,6 +4820,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4832,6 +4855,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5033,6 +5057,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5138,6 +5163,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5223,6 +5249,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5483,6 +5510,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5574,6 +5602,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5634,6 +5663,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_15"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5656,6 +5686,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5754,6 +5786,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5775,6 +5808,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6043,6 +6077,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6137,6 +6172,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6226,6 +6262,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6234,6 +6271,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6269,6 +6307,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6431,6 +6470,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6446,6 +6486,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6473,6 +6514,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6572,6 +6614,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6719,6 +6762,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7440,6 +7484,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7719,6 +7764,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7743,6 +7789,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7751,6 +7798,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7831,6 +7879,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8016,6 +8065,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8330,6 +8380,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8501,6 +8552,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8665,6 +8717,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8707,6 +8760,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8763,6 +8817,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 8eed33d20a22b..ef8133df5c8ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1929,6 +1933,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2003,6 +2008,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2051,6 +2057,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2075,6 +2082,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2243,6 +2251,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2371,6 +2380,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2510,6 +2520,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2593,17 +2604,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3152,6 +3168,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3184,6 +3201,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4187,6 +4205,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4542,6 +4561,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4596,6 +4616,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4648,6 +4669,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4792,6 +4814,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4826,6 +4849,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5027,6 +5051,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5132,6 +5157,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5217,6 +5243,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5477,6 +5504,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5568,6 +5596,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5628,6 +5657,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5650,6 +5680,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5748,6 +5780,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5769,6 +5802,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6037,6 +6071,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6130,6 +6165,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6219,6 +6255,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6227,6 +6264,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_3"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6262,6 +6300,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6424,6 +6463,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6439,6 +6479,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6466,6 +6507,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6565,6 +6607,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6712,6 +6755,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7212,6 +7256,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7432,6 +7477,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7711,6 +7757,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7735,6 +7782,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7743,6 +7791,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7823,6 +7872,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8008,6 +8058,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8322,6 +8373,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8493,6 +8545,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8657,6 +8710,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8699,6 +8753,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8755,6 +8810,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index a41538e480533..16e30cfc4250d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -793,6 +794,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1114,6 +1116,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1297,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1439,6 +1443,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1925,6 +1930,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1999,6 +2005,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2047,6 +2054,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2071,6 +2079,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2238,6 +2247,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2366,6 +2376,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2505,6 +2516,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2588,17 +2600,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3147,6 +3164,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3179,6 +3197,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4182,6 +4201,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4535,6 +4555,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4589,6 +4610,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4641,6 +4663,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4785,6 +4808,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4819,6 +4843,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5019,6 +5044,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5124,6 +5150,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5209,6 +5236,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5468,6 +5496,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5559,6 +5588,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5619,6 +5649,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5641,6 +5672,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5739,6 +5772,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5760,6 +5794,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6027,6 +6062,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6120,6 +6156,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6209,6 +6246,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6217,6 +6255,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6252,6 +6291,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6414,6 +6454,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6429,6 +6470,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6456,6 +6498,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6555,6 +6598,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6702,6 +6746,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7202,6 +7247,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7421,6 +7467,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7700,6 +7747,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7724,6 +7772,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_5"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7732,6 +7781,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7812,6 +7862,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7997,6 +8048,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8311,6 +8363,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8482,6 +8535,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8645,6 +8699,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8687,6 +8742,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8743,6 +8799,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 53be954857ca9..39f1eaddce5f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2528,6 +2537,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3214,6 +3224,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4230,6 +4241,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4588,6 +4600,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4644,6 +4657,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4697,6 +4711,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4844,6 +4859,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4878,6 +4894,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5080,6 +5097,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5187,6 +5205,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5274,6 +5293,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5535,6 +5555,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5628,6 +5649,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_9"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5688,6 +5710,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5711,6 +5734,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5810,6 +5835,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5831,6 +5857,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6102,6 +6129,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6196,6 +6224,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6288,6 +6317,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6296,6 +6326,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6332,6 +6363,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6496,6 +6528,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6512,6 +6545,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6541,6 +6575,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6641,6 +6676,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_3_0"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6788,6 +6824,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7513,6 +7550,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7794,6 +7832,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7818,6 +7857,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7826,6 +7866,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7913,6 +7954,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8100,6 +8142,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8417,6 +8460,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8761,6 +8805,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8803,6 +8848,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 58bef4e1657ef..7fcfebf22301b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2237,6 +2246,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2365,6 +2375,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2504,6 +2515,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2587,17 +2599,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3146,6 +3163,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3178,6 +3196,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4181,6 +4200,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4534,6 +4554,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4588,6 +4609,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4640,6 +4662,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4784,6 +4807,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4818,6 +4842,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5018,6 +5043,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5123,6 +5149,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5208,6 +5235,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5467,6 +5495,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5558,6 +5587,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5618,6 +5648,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5640,6 +5671,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5738,6 +5771,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5759,6 +5793,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6026,6 +6061,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6119,6 +6155,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6208,6 +6245,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6216,6 +6254,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6251,6 +6290,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6413,6 +6453,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6428,6 +6469,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6455,6 +6497,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6554,6 +6597,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6701,6 +6745,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7200,6 +7245,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7419,6 +7465,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7697,6 +7744,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7721,6 +7769,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7729,6 +7778,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7809,6 +7859,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7994,6 +8045,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8308,6 +8360,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8479,6 +8532,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8641,6 +8695,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8683,6 +8738,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8739,6 +8795,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index ac0f58b31bd2e..e8f29e893e541 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2236,6 +2245,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2364,6 +2374,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2503,6 +2514,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2586,17 +2598,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3143,6 +3160,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3175,6 +3193,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4178,6 +4197,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4531,6 +4551,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4585,6 +4606,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4637,6 +4659,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4779,6 +4802,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4813,6 +4837,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5013,6 +5038,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5118,6 +5144,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5203,6 +5230,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5462,6 +5490,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5553,6 +5582,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5613,6 +5643,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5635,6 +5666,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5732,6 +5765,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5753,6 +5787,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6020,6 +6055,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6112,6 +6148,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6201,6 +6238,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6209,6 +6247,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6244,6 +6283,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6405,6 +6445,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6420,6 +6461,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6447,6 +6489,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6546,6 +6589,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6693,6 +6737,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7187,6 +7232,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7405,6 +7451,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7683,6 +7730,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7707,6 +7755,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7715,6 +7764,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7795,6 +7845,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7980,6 +8031,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8294,6 +8346,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8376,6 +8429,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8461,6 +8515,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8623,6 +8678,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8665,6 +8721,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8721,6 +8778,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 438cbbc5a1925..25e927b694c90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -469,6 +469,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -792,6 +793,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1113,6 +1115,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1296,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1438,6 +1442,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1924,6 +1929,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1998,6 +2004,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2046,6 +2053,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2070,6 +2078,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2236,6 +2245,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2364,6 +2374,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2503,6 +2514,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2586,17 +2598,22 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2975,6 +2992,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extract-dependencies" = dontDistribute super."extract-dependencies"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; @@ -3141,6 +3159,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3173,6 +3192,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4175,6 +4195,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4528,6 +4549,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4582,6 +4604,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4634,6 +4657,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4774,6 +4798,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4808,6 +4833,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5007,6 +5033,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5112,6 +5139,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5197,6 +5225,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5456,6 +5485,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5547,6 +5577,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5607,6 +5638,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5629,6 +5661,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5726,6 +5760,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5747,6 +5782,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6014,6 +6050,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6106,6 +6143,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6195,6 +6233,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6203,6 +6242,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6238,6 +6278,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6399,6 +6440,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6414,6 +6456,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6441,6 +6484,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6540,6 +6584,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6687,6 +6732,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7181,6 +7227,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7399,6 +7446,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7677,6 +7725,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7701,6 +7750,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7709,6 +7759,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7789,6 +7840,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7974,6 +8026,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8288,6 +8341,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8370,6 +8424,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8455,6 +8510,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8617,6 +8673,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8659,6 +8716,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8715,6 +8773,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 0b13ec7c6b0b7..85f58d4dc7549 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2528,6 +2537,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3213,6 +3223,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4229,6 +4240,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4586,6 +4598,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4642,6 +4655,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4695,6 +4709,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4842,6 +4857,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4876,6 +4892,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5078,6 +5095,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5185,6 +5203,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5272,6 +5291,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5533,6 +5553,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5626,6 +5647,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5686,6 +5708,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5709,6 +5732,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5808,6 +5833,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5829,6 +5855,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6100,6 +6127,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6194,6 +6222,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6286,6 +6315,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6294,6 +6324,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6330,6 +6361,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6494,6 +6526,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6510,6 +6543,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6539,6 +6573,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6639,6 +6674,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6786,6 +6822,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7509,6 +7546,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7790,6 +7828,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7814,6 +7853,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7822,6 +7862,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7909,6 +7950,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8096,6 +8138,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8412,6 +8455,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8756,6 +8800,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8798,6 +8843,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 70650c9956aec..7ac520afb6008 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1944,6 +1947,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2019,6 +2023,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2067,6 +2072,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2091,6 +2097,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2259,6 +2266,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2389,6 +2397,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2528,6 +2537,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3213,6 +3223,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4229,6 +4240,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4586,6 +4598,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4642,6 +4655,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4695,6 +4709,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4842,6 +4857,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4876,6 +4892,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5078,6 +5095,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5185,6 +5203,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5272,6 +5291,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5533,6 +5553,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5626,6 +5647,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5686,6 +5708,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5709,6 +5732,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5808,6 +5833,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5829,6 +5855,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6100,6 +6127,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6194,6 +6222,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6286,6 +6315,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6294,6 +6324,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6330,6 +6361,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6494,6 +6526,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6510,6 +6543,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote" = doDistribute super."prednote_0_36_0_2"; @@ -6539,6 +6573,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6639,6 +6674,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6786,6 +6822,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7509,6 +7546,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7789,6 +7827,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7813,6 +7852,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7821,6 +7861,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7908,6 +7949,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8095,6 +8137,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8411,6 +8454,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8754,6 +8798,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8796,6 +8841,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 4f178b4b1cfe7..fc4a7679ff465 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1943,6 +1946,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_3_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2018,6 +2022,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2066,6 +2071,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2090,6 +2096,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2258,6 +2265,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2388,6 +2396,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2527,6 +2536,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3211,6 +3221,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4226,6 +4237,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4582,6 +4594,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4638,6 +4651,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4691,6 +4705,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4836,6 +4851,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4870,6 +4886,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5072,6 +5089,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5179,6 +5197,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5266,6 +5285,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5527,6 +5547,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5620,6 +5641,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5680,6 +5702,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5703,6 +5726,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5801,6 +5826,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5822,6 +5848,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6093,6 +6120,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6187,6 +6215,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6278,6 +6307,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6286,6 +6316,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6322,6 +6353,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6486,6 +6518,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6502,6 +6535,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6530,6 +6564,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6630,6 +6665,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6777,6 +6813,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7500,6 +7537,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7780,6 +7818,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7804,6 +7843,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7812,6 +7852,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7896,6 +7937,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8083,6 +8125,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8399,6 +8442,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8741,6 +8785,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8783,6 +8828,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8839,6 +8885,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index cf8d12a649393..791a8a909c597 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1943,6 +1946,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2018,6 +2022,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2066,6 +2071,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2090,6 +2096,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2258,6 +2265,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2388,6 +2396,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2527,6 +2536,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3178,6 +3188,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3210,6 +3221,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4223,6 +4235,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4579,6 +4592,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4635,6 +4649,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4688,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4833,6 +4849,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4867,6 +4884,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5068,6 +5086,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5174,6 +5193,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5260,6 +5280,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5521,6 +5542,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5614,6 +5636,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5674,6 +5697,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5697,6 +5721,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5795,6 +5821,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5816,6 +5843,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6087,6 +6115,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6181,6 +6210,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6272,6 +6302,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6280,6 +6311,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6316,6 +6348,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6480,6 +6513,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6496,6 +6530,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6524,6 +6559,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive" = doDistribute super."primitive_0_6"; "primitive-simd" = dontDistribute super."primitive-simd"; @@ -6624,6 +6660,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6771,6 +6808,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7494,6 +7532,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7774,6 +7813,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7798,6 +7838,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7806,6 +7847,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7890,6 +7932,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8077,6 +8120,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8392,6 +8436,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8733,6 +8778,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8775,6 +8821,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8831,6 +8878,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 3cf88fb2e61cf..63a27278bc012 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1941,6 +1944,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2016,6 +2020,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2064,6 +2069,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2088,6 +2094,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2256,6 +2263,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2385,6 +2393,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2524,6 +2533,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -3175,6 +3185,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3207,6 +3218,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4219,6 +4231,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4575,6 +4588,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4631,6 +4645,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4684,6 +4699,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4829,6 +4845,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4863,6 +4880,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5064,6 +5082,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5170,6 +5189,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5256,6 +5276,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5517,6 +5538,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5610,6 +5632,7 @@ self: super: { "mime-directory" = dontDistribute super."mime-directory"; "mime-mail" = doDistribute super."mime-mail_0_4_10"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5670,6 +5693,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_13_2"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5693,6 +5717,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5791,6 +5817,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5812,6 +5839,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6083,6 +6111,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6177,6 +6206,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6268,6 +6298,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6276,6 +6307,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6312,6 +6344,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6475,6 +6508,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6491,6 +6525,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6519,6 +6554,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6618,6 +6654,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6765,6 +6802,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7488,6 +7526,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7767,6 +7806,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7791,6 +7831,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7799,6 +7840,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7883,6 +7925,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8070,6 +8113,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8385,6 +8429,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8724,6 +8769,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8766,6 +8812,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8822,6 +8869,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 104697b1a4bfe..b04324a3e14c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -796,6 +797,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1302,6 +1304,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1939,6 +1942,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2014,6 +2018,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2062,6 +2067,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2086,6 +2092,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2254,6 +2261,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2383,6 +2391,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2522,6 +2531,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2605,6 +2615,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2612,12 +2623,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3169,6 +3182,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3201,6 +3215,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4213,6 +4228,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4569,6 +4585,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4625,6 +4642,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4678,6 +4696,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4823,6 +4842,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4857,6 +4877,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5058,6 +5079,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5164,6 +5186,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5250,6 +5273,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5511,6 +5535,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5603,6 +5628,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5663,6 +5689,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5686,6 +5713,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5784,6 +5813,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5805,6 +5835,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6076,6 +6107,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6170,6 +6202,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6261,6 +6294,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6269,6 +6303,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6305,6 +6340,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6468,6 +6504,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6483,6 +6520,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6511,6 +6549,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6610,6 +6649,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6757,6 +6797,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7480,6 +7521,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7759,6 +7801,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7783,6 +7826,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7791,6 +7835,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7874,6 +7919,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8061,6 +8107,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8376,6 +8423,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8715,6 +8763,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8757,6 +8806,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8813,6 +8863,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index be7b35aabf754..3a41fc07bbae6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -470,6 +470,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -794,6 +795,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1300,6 +1302,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1936,6 +1939,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -2011,6 +2015,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2059,6 +2064,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2083,6 +2089,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2251,6 +2258,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2380,6 +2388,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2519,6 +2528,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2602,6 +2612,7 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_0"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_7"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_3"; @@ -2609,12 +2620,14 @@ self: super: { "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-haddock" = doDistribute super."diagrams-haddock_0_3_0_7"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_3"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_3"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3165,6 +3178,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "forecast-io" = dontDistribute super."forecast-io"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; @@ -3197,6 +3211,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -4209,6 +4224,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4565,6 +4581,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; @@ -4621,6 +4638,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4674,6 +4692,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4819,6 +4838,7 @@ self: super: { "inline-c" = dontDistribute super."inline-c"; "inline-c-cpp" = dontDistribute super."inline-c-cpp"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4853,6 +4873,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -5054,6 +5075,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -5160,6 +5182,7 @@ self: super: { "language-thrift" = dontDistribute super."language-thrift"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "largeword" = doDistribute super."largeword_1_2_3"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; @@ -5246,6 +5269,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5507,6 +5531,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5599,6 +5624,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5659,6 +5685,7 @@ self: super: { "monad-http" = dontDistribute super."monad-http"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5682,6 +5709,8 @@ self: super: { "monad-time" = dontDistribute super."monad-time"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5780,6 +5809,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5801,6 +5831,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6071,6 +6102,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -6165,6 +6197,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6256,6 +6289,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6264,6 +6298,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6300,6 +6335,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6463,6 +6499,7 @@ self: super: { "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6478,6 +6515,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = doDistribute super."pred-trie_0_2_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6506,6 +6544,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6605,6 +6644,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_4_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6752,6 +6792,7 @@ self: super: { "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -7475,6 +7516,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7754,6 +7796,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7778,6 +7821,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7786,6 +7830,7 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; @@ -7869,6 +7914,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -8056,6 +8102,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -8371,6 +8418,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8710,6 +8758,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8752,6 +8801,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; @@ -8808,6 +8858,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_1_0_6"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_4_4"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 5613b9d911968..f242179e73a4e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -460,6 +460,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -776,6 +778,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1090,6 +1093,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1272,6 +1276,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1366,6 +1371,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1392,6 +1398,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1412,6 +1419,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1882,6 +1890,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1927,6 +1936,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1954,6 +1964,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2024,6 +2035,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2124,6 +2136,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2185,6 +2198,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2287,6 +2301,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2309,6 +2324,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2449,6 +2465,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2485,6 +2502,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2527,16 +2545,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_8"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -3071,6 +3094,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3102,6 +3126,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -3909,6 +3934,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4078,6 +4104,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4415,6 +4442,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4465,6 +4493,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4496,6 +4525,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_0_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4513,6 +4543,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4650,6 +4681,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c" = doDistribute super."inline-c_0_5_5_1"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4684,6 +4716,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4873,6 +4906,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4984,6 +5018,7 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; @@ -5064,6 +5099,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5316,6 +5352,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5404,6 +5441,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5462,6 +5500,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5481,8 +5520,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5578,6 +5620,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5599,6 +5642,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5853,6 +5897,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5944,6 +5989,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6027,6 +6073,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6035,6 +6082,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6068,6 +6116,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6218,9 +6267,11 @@ self: super: { "postgresql-orm" = dontDistribute super."postgresql-orm"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6236,6 +6287,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6262,6 +6314,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6359,6 +6412,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6501,6 +6555,7 @@ self: super: { "readable" = dontDistribute super."readable"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6644,6 +6699,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6975,6 +7033,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7185,6 +7244,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7266,6 +7326,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7455,6 +7516,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7479,6 +7541,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_6"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7487,10 +7550,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7560,6 +7626,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7739,6 +7806,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7871,6 +7939,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -8035,6 +8105,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8115,6 +8186,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8186,6 +8258,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_0_4"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8342,6 +8415,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8382,6 +8456,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8436,6 +8511,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index dad52f109ee05..c9e4182196f0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -460,6 +460,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -776,6 +778,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1090,6 +1093,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1270,6 +1274,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1364,6 +1369,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1390,6 +1396,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1410,6 +1417,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1880,6 +1888,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-client" = doDistribute super."cayley-client_0_1_4_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; @@ -1925,6 +1934,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1952,6 +1962,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2022,6 +2033,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2122,6 +2134,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2183,6 +2196,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2285,6 +2299,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2307,6 +2322,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2447,6 +2463,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2483,6 +2500,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2525,16 +2543,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_1"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_4"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_8"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2903,6 +2926,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3065,6 +3089,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3096,6 +3121,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free" = doDistribute super."free_4_12_1"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; @@ -3903,6 +3929,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4071,6 +4098,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4408,6 +4436,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4458,6 +4487,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4489,6 +4519,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_0_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4506,6 +4537,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4639,6 +4671,7 @@ self: super: { "inject-function" = dontDistribute super."inject-function"; "inline-c" = doDistribute super."inline-c_0_5_5_1"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4673,6 +4706,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4861,6 +4895,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4972,9 +5007,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -5049,6 +5086,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5301,6 +5339,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5389,6 +5428,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5447,6 +5487,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_16"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5466,8 +5507,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5563,6 +5607,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5584,6 +5629,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5838,6 +5884,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5929,6 +5976,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -6012,6 +6060,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -6020,6 +6069,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6053,6 +6103,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6202,9 +6253,11 @@ self: super: { "postgresql-orm" = dontDistribute super."postgresql-orm"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6220,6 +6273,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6246,6 +6300,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6343,6 +6398,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6485,6 +6541,7 @@ self: super: { "readable" = dontDistribute super."readable"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6628,6 +6685,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6959,6 +7019,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7169,6 +7230,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7250,6 +7312,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7439,6 +7502,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7463,6 +7527,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_7"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7471,10 +7536,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7544,6 +7612,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7723,6 +7792,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7855,6 +7925,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -8019,6 +8091,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8099,6 +8172,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8170,6 +8244,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_0_4"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8326,6 +8401,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8366,6 +8442,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8420,6 +8497,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 53c7128416326..a1ebe60a9ecaf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -459,6 +459,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -496,6 +497,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -775,6 +777,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1089,6 +1092,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1269,6 +1273,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1363,6 +1368,7 @@ self: super: { "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; "async" = doDistribute super."async_2_0_2"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1389,6 +1395,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1409,6 +1416,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1876,6 +1884,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1920,6 +1929,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1947,6 +1957,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -2017,6 +2028,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2116,6 +2128,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2177,6 +2190,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2279,6 +2293,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2301,6 +2316,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2440,6 +2456,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2476,6 +2493,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2518,16 +2536,21 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; "diagrams-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-gtk" = dontDistribute super."diagrams-gtk"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2725,6 +2748,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2893,6 +2917,7 @@ self: super: { "extensible-data" = dontDistribute super."extensible-data"; "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3054,6 +3079,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3085,6 +3111,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3213,6 +3240,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3885,6 +3913,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -4052,6 +4081,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4387,6 +4417,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4437,6 +4468,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4468,6 +4500,7 @@ self: super: { "human-readable-duration" = doDistribute super."human-readable-duration_0_1_1_0"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4485,6 +4518,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4616,6 +4650,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inline-r" = dontDistribute super."inline-r"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; @@ -4649,6 +4684,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4836,6 +4872,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keys" = doDistribute super."keys_3_10_2"; @@ -4947,9 +4984,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_6_2_0"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -5024,6 +5063,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5276,6 +5316,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5364,6 +5405,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5422,6 +5464,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5440,8 +5483,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5535,6 +5581,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5556,6 +5603,7 @@ self: super: { "mustache" = dontDistribute super."mustache"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5810,6 +5858,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5901,6 +5950,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5984,6 +6034,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5992,6 +6043,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -6025,6 +6077,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6172,9 +6225,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6190,6 +6245,7 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; "pred-trie" = dontDistribute super."pred-trie"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; @@ -6215,6 +6271,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6312,6 +6369,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6453,6 +6511,7 @@ self: super: { "readable" = dontDistribute super."readable"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6595,6 +6654,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6923,6 +6985,7 @@ self: super: { "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; "shelltestrunner" = dontDistribute super."shelltestrunner"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7129,6 +7192,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7208,6 +7272,7 @@ self: super: { "state" = dontDistribute super."state"; "state-plus" = dontDistribute super."state-plus"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statestack" = doDistribute super."statestack_0_2_0_4"; @@ -7397,6 +7462,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7421,6 +7487,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7429,10 +7496,13 @@ self: super: { "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; "tar" = doDistribute super."tar_0_4_2_2"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7502,6 +7572,7 @@ self: super: { "test-shouldbe" = dontDistribute super."test-shouldbe"; "test-simple" = dontDistribute super."test-simple"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7681,6 +7752,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7813,6 +7885,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7977,6 +8051,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -8057,6 +8132,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -8064,6 +8140,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8126,6 +8203,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8282,6 +8360,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8322,6 +8401,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8376,6 +8456,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 17e11586d38c4..7c814e27ccfe9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -455,6 +455,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -642,6 +644,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -765,6 +768,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1078,6 +1082,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1257,6 +1262,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1350,6 +1356,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1376,6 +1383,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1396,6 +1404,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1747,6 +1756,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1852,6 +1862,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1895,6 +1906,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1922,6 +1934,7 @@ self: super: { "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; "circle-packing" = doDistribute super."circle-packing_0_1_0_4"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1992,6 +2005,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2091,6 +2105,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2149,6 +2164,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2249,6 +2265,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2271,6 +2288,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2407,6 +2425,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2443,6 +2462,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2485,14 +2505,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2686,6 +2712,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2851,6 +2878,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2922,6 +2950,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3010,6 +3039,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3041,6 +3071,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3167,6 +3198,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3831,6 +3863,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3998,6 +4031,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4333,6 +4367,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4383,6 +4418,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4412,6 +4448,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4429,6 +4466,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4560,6 +4598,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4592,6 +4631,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4778,6 +4818,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4888,9 +4929,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_0"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4965,6 +5008,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5215,6 +5259,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5301,6 +5346,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5359,6 +5405,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5377,8 +5424,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5472,6 +5522,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5492,6 +5543,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5744,6 +5796,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5834,6 +5887,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5916,6 +5970,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5924,6 +5979,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5956,6 +6012,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6100,9 +6157,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6118,6 +6177,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6142,6 +6203,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6236,6 +6298,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6375,6 +6438,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6516,6 +6580,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6839,6 +6906,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7044,6 +7112,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7121,6 +7190,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7309,6 +7379,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7333,6 +7404,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7340,10 +7412,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7409,6 +7485,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7462,6 +7539,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7585,6 +7663,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7715,6 +7794,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7877,6 +7958,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7958,6 +8040,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7965,6 +8048,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8027,6 +8111,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8182,6 +8267,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8222,6 +8308,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8276,6 +8363,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index bfb3b73199801..ea20f7e7d14cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -454,6 +454,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -489,6 +490,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -641,6 +643,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -764,6 +767,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1077,6 +1081,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1255,6 +1260,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1348,6 +1354,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1374,6 +1381,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1394,6 +1402,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1743,6 +1752,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1848,6 +1858,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1891,6 +1902,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1917,6 +1929,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1987,6 +2000,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2086,6 +2100,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2144,6 +2159,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2244,6 +2260,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2266,6 +2283,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2274,6 +2292,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2401,6 +2420,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2437,6 +2457,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2479,14 +2500,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2680,6 +2707,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2845,6 +2873,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2916,6 +2945,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3004,6 +3034,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3035,6 +3066,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3161,6 +3193,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3825,6 +3858,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3992,6 +4026,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4327,6 +4362,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4377,6 +4413,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4406,6 +4443,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4423,6 +4461,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4553,6 +4592,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4585,6 +4625,7 @@ self: super: { "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4771,6 +4812,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4881,9 +4923,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4958,6 +5002,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5208,6 +5253,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5294,6 +5340,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5351,6 +5398,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-logger" = doDistribute super."monad-logger_0_3_17"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5369,8 +5417,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5464,6 +5515,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5484,6 +5536,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5736,6 +5789,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5826,6 +5880,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5908,6 +5963,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5916,6 +5972,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5948,6 +6005,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6092,9 +6150,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6110,6 +6170,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6134,6 +6196,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6228,6 +6291,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6367,6 +6431,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6507,6 +6572,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6829,6 +6897,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7034,6 +7103,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7111,6 +7181,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7299,6 +7370,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7308,6 +7380,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7322,6 +7395,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7329,10 +7403,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7398,6 +7476,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7451,6 +7530,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7574,6 +7654,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7704,6 +7785,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7866,6 +7949,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7946,6 +8030,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7953,6 +8038,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8015,6 +8101,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8170,6 +8257,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8210,6 +8298,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8264,6 +8353,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 4044a1f41a0ad..38acdb238cfe8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -449,6 +450,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -482,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -633,6 +636,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -756,6 +760,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1068,6 +1073,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1086,6 +1092,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1243,6 +1250,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1335,6 +1343,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1360,6 +1369,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1380,6 +1390,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1421,6 +1432,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1724,6 +1736,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1825,6 +1838,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1867,6 +1881,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1893,6 +1908,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1957,6 +1973,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2034,6 +2051,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2053,6 +2071,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2087,6 +2106,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2110,6 +2130,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2208,6 +2229,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2230,6 +2252,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2238,6 +2261,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2364,6 +2388,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2400,6 +2425,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2439,12 +2465,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2633,6 +2667,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2660,6 +2695,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2791,6 +2827,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2858,6 +2895,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2946,6 +2984,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2977,6 +3016,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3100,6 +3140,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3547,6 +3588,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3754,6 +3796,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3916,6 +3959,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3944,6 +3988,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4243,6 +4288,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4293,6 +4339,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4321,6 +4368,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4338,6 +4386,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4465,6 +4514,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4496,6 +4546,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4604,6 +4655,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4679,6 +4731,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4768,6 +4821,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4787,9 +4841,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4829,6 +4885,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4863,6 +4920,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5086,6 +5144,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5108,6 +5167,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5190,6 +5250,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5243,6 +5304,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5259,8 +5321,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5352,6 +5417,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5372,6 +5438,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5618,6 +5685,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5704,6 +5772,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5781,6 +5850,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5788,6 +5858,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5799,6 +5870,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5818,6 +5890,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5959,9 +6032,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5977,6 +6052,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6001,6 +6078,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6071,6 +6149,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6094,6 +6173,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6230,6 +6310,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6367,6 +6448,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6609,9 +6693,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6626,6 +6714,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6681,6 +6770,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6881,6 +6971,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6958,6 +7049,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7019,6 +7111,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7141,6 +7234,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7150,6 +7244,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7163,6 +7258,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7170,10 +7266,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7238,6 +7338,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7290,6 +7391,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7412,6 +7514,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7539,6 +7642,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7699,6 +7804,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7709,6 +7815,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7772,10 +7879,12 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7783,6 +7892,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7838,6 +7948,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7992,6 +8103,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8032,6 +8144,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8085,6 +8198,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 5d5a3767d6fcd..ae02a8e85a58e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -448,6 +449,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -632,6 +635,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -755,6 +759,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1067,6 +1072,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1085,6 +1091,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1241,6 +1248,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1333,6 +1341,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1358,6 +1367,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1378,6 +1388,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1416,6 +1427,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1718,6 +1730,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1819,6 +1832,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1861,6 +1875,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1887,6 +1902,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1951,6 +1967,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2027,6 +2044,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2045,6 +2063,7 @@ self: super: { "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-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2079,6 +2098,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2102,6 +2122,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2200,6 +2221,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2222,6 +2244,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2230,6 +2253,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2356,6 +2380,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2392,6 +2417,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2431,12 +2457,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2625,6 +2659,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2652,6 +2687,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2782,6 +2818,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2849,6 +2886,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2936,6 +2974,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2967,6 +3006,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3090,6 +3130,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3537,6 +3578,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3744,6 +3786,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3906,6 +3949,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3934,6 +3978,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4229,6 +4274,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4279,6 +4325,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4307,6 +4354,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4324,6 +4372,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4450,6 +4499,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4481,6 +4531,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4589,6 +4640,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4664,6 +4716,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4753,6 +4806,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4772,9 +4826,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4814,6 +4870,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4848,6 +4905,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5070,6 +5128,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5092,6 +5151,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5174,6 +5234,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5227,6 +5288,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5243,8 +5305,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5336,6 +5401,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5356,6 +5422,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5602,6 +5669,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5688,6 +5756,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5765,6 +5834,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5772,6 +5842,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5783,6 +5854,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5802,6 +5874,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5942,9 +6015,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5960,6 +6035,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5984,6 +6061,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6054,6 +6132,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6077,6 +6156,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6213,6 +6293,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6350,6 +6431,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6592,9 +6676,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6609,6 +6697,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6664,6 +6753,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6864,6 +6954,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6941,6 +7032,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7002,6 +7094,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7123,6 +7216,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7132,6 +7226,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7145,6 +7240,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7152,10 +7248,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7219,6 +7319,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7226,6 +7327,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7270,6 +7372,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7392,6 +7495,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7518,6 +7622,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7676,6 +7782,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7686,6 +7793,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7702,6 +7810,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7747,10 +7856,12 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7758,6 +7869,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7813,6 +7925,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7967,6 +8080,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8007,6 +8121,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8017,6 +8132,7 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8028,6 +8144,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8041,6 +8158,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8057,7 +8175,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index b8353d4f9b310..6b0728a07d74e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -448,6 +449,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -631,6 +634,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -754,6 +758,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1066,6 +1071,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1084,6 +1090,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1240,6 +1247,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1332,6 +1340,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1357,6 +1366,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1377,6 +1387,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1415,6 +1426,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1717,6 +1729,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1818,6 +1831,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1860,6 +1874,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1886,6 +1901,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1946,6 +1962,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2022,6 +2039,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2040,6 +2058,7 @@ self: super: { "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-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2074,6 +2093,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2097,6 +2117,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2195,6 +2216,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2217,6 +2239,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2225,6 +2248,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2351,6 +2375,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2387,6 +2412,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2426,12 +2452,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2619,6 +2653,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2646,6 +2681,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2775,6 +2811,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2790,6 +2827,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_2"; "fast-math" = dontDistribute super."fast-math"; @@ -2841,6 +2879,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2928,6 +2967,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2959,6 +2999,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3082,6 +3123,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3529,6 +3571,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3736,6 +3779,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3797,6 +3841,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_3"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3896,6 +3941,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3924,6 +3970,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4219,6 +4266,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4268,6 +4316,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4296,6 +4345,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4313,6 +4363,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4439,6 +4490,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4470,6 +4522,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4577,6 +4630,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4652,6 +4706,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4741,6 +4796,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4760,9 +4816,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4802,6 +4860,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4836,6 +4895,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5056,6 +5116,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5077,6 +5138,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5157,6 +5219,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5209,6 +5272,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5225,8 +5289,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5318,6 +5385,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5338,6 +5406,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5584,6 +5653,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5670,6 +5740,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5747,6 +5818,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5754,6 +5826,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5765,6 +5838,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5784,6 +5858,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5922,9 +5997,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5940,6 +6017,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5964,6 +6043,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6034,6 +6114,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6057,6 +6138,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6193,6 +6275,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6330,6 +6413,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6572,8 +6658,12 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6588,6 +6678,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6643,6 +6734,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6842,6 +6934,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6919,6 +7012,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -6978,6 +7072,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7099,6 +7194,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7108,6 +7204,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7121,6 +7218,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7128,10 +7226,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7194,6 +7296,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7201,6 +7304,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7245,6 +7349,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7367,6 +7472,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7418,6 +7524,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_6"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7492,6 +7599,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7650,6 +7759,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7660,6 +7770,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7676,6 +7787,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7721,10 +7833,12 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7732,6 +7846,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7787,6 +7902,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7941,6 +8057,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -7981,6 +8098,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_13"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -7991,6 +8109,7 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8002,6 +8121,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8015,6 +8135,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8031,7 +8152,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 75d72e126f1a4..c7c616b0c09a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -125,6 +125,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -447,6 +448,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -480,6 +482,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -630,6 +633,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -752,6 +756,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1063,6 +1068,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1081,6 +1087,7 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1237,6 +1244,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1329,6 +1337,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1354,6 +1363,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1373,6 +1383,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1411,6 +1422,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1710,6 +1722,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1811,6 +1824,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1853,6 +1867,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1879,6 +1894,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1936,6 +1952,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2012,6 +2029,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2030,6 +2048,7 @@ self: super: { "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-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2064,6 +2083,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2087,6 +2107,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2185,6 +2206,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2207,6 +2229,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2215,6 +2238,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2341,6 +2365,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2377,6 +2402,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2416,12 +2442,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2608,6 +2642,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2635,6 +2670,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2764,6 +2800,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2779,7 +2816,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_3"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2829,6 +2868,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2916,6 +2956,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2947,6 +2988,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3070,6 +3112,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3517,6 +3560,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3724,6 +3768,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3785,6 +3830,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_3"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3884,6 +3930,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3912,6 +3959,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4207,6 +4255,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4252,6 +4301,7 @@ self: super: { "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-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4280,6 +4330,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4297,6 +4348,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4423,6 +4475,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4454,6 +4507,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-machine" = dontDistribute super."io-machine"; @@ -4559,6 +4613,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4634,6 +4689,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4723,6 +4779,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4742,9 +4799,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4784,6 +4843,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4818,6 +4878,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5037,6 +5098,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5058,6 +5120,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5138,6 +5201,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5190,6 +5254,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5206,8 +5271,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5233,6 +5301,7 @@ self: super: { "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5297,6 +5366,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5317,6 +5387,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5563,6 +5634,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5648,6 +5720,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5725,6 +5798,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5732,6 +5806,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5743,6 +5818,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5762,6 +5838,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5897,9 +5974,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5915,6 +5994,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -5939,6 +6020,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6009,6 +6091,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6032,6 +6115,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6168,6 +6252,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6305,6 +6390,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6547,8 +6635,12 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6563,6 +6655,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6597,6 +6690,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_8_1"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6617,6 +6711,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6816,6 +6911,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6892,6 +6988,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -6951,6 +7048,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7072,6 +7170,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7081,6 +7180,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7094,6 +7194,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7101,10 +7202,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7167,6 +7272,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7174,6 +7280,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_1"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7218,6 +7325,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7340,6 +7448,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7391,6 +7500,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_6"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7465,6 +7575,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7622,6 +7734,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7632,6 +7745,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7647,6 +7761,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_5"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7691,10 +7806,12 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15"; "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-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7702,6 +7819,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7757,6 +7875,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -7911,6 +8030,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -7948,6 +8068,8 @@ self: super: { "yeshql" = dontDistribute super."yeshql"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_13_1"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -7958,16 +8080,19 @@ self: super: { "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-bin" = doDistribute super."yesod-bin_1_4_18"; "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-core" = doDistribute super."yesod-core_1_4_20_1"; "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" = doDistribute super."yesod-form_1_4_7"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7981,6 +8106,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_4"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7997,7 +8123,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_1_0"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix new file mode 100644 index 0000000000000..e05ecd581b36e --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -0,0 +1,8149 @@ +{ 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.14 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AFSM" = dontDistribute super."AFSM"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "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-output" = doDistribute super."concurrent-output_1_7_4"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; + "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"; + "d3d11binding" = dontDistribute super."d3d11binding"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; + "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"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_9"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_5"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; + "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"; + "freddy" = dontDistribute super."freddy"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "guid" = dontDistribute super."guid"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_3"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_3"; + "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"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindley-milner" = dontDistribute super."hindley-milner"; + "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"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hit-graph" = dontDistribute super."hit-graph"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-machine" = dontDistribute super."io-machine"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_11_0"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memory" = doDistribute super."memory_0_11"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; + "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-audit" = dontDistribute super."persistent-audit"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; + "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"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "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-transactional" = dontDistribute super."postgresql-transactional"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-env-var" = dontDistribute super."read-env-var"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; + "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-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "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"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempo" = dontDistribute super."tempo"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-debug" = doDistribute super."tls-debug_0_4_1"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "transient-universe" = dontDistribute super."transient-universe"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "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"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix new file mode 100644 index 0000000000000..c0e68130c4a74 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -0,0 +1,8129 @@ +{ 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.15 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AFSM" = dontDistribute super."AFSM"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_4_2_5"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-field-json-th" = dontDistribute super."api-field-json-th"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "bento" = dontDistribute super."bento"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "color-counter" = dontDistribute super."color-counter"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "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-output" = doDistribute super."concurrent-output_1_7_4"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "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"; + "d3d11binding" = dontDistribute super."d3d11binding"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; + "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"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_9"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest" = doDistribute super."doctest_0_10_1"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; + "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"; + "freddy" = dontDistribute super."freddy"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "guid" = dontDistribute super."guid"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_5_2"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_3"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindley-milner" = dontDistribute super."hindley-milner"; + "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"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hit-graph" = dontDistribute super."hit-graph"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-bits" = dontDistribute super."hw-bits"; + "hw-conduit" = dontDistribute super."hw-conduit"; + "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; + "hw-prim" = dontDistribute super."hw-prim"; + "hw-rankselect" = dontDistribute super."hw-rankselect"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-machine" = dontDistribute super."io-machine"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_7"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memory" = doDistribute super."memory_0_11"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_2_1"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; + "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_4"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; + "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-audit" = dontDistribute super."persistent-audit"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; + "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"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-transactional" = dontDistribute super."postgresql-transactional"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = dontDistribute super."protolude"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow" = doDistribute super."rainbow_0_26_0_6"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-env-var" = dontDistribute super."read-env-var"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; + "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-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_1"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratosphere" = dontDistribute super."stratosphere"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "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"; + "tardis" = doDistribute super."tardis_0_3_0_0"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempo" = dontDistribute super."tempo"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-debug" = doDistribute super."tls-debug_0_4_1"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "transient-universe" = dontDistribute super."transient-universe"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "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"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-job-queue" = dontDistribute super."yesod-job-queue"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 7dbaa3da18b99..a7e35e6c137d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -454,6 +454,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -489,6 +490,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -640,6 +642,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -763,6 +766,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1076,6 +1080,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1254,6 +1259,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1347,6 +1353,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1373,6 +1380,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1393,6 +1401,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1742,6 +1751,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1847,6 +1857,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1890,6 +1901,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1916,6 +1928,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1986,6 +1999,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2085,6 +2099,7 @@ self: super: { "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2143,6 +2158,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2243,6 +2259,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2265,6 +2282,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2273,6 +2291,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2400,6 +2419,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2436,6 +2456,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2478,14 +2499,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2678,6 +2705,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2841,6 +2869,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2911,6 +2940,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2999,6 +3029,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3030,6 +3061,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3156,6 +3188,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3818,6 +3851,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3985,6 +4019,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4320,6 +4355,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4370,6 +4406,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4398,6 +4435,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4415,6 +4453,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4545,6 +4584,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4576,6 +4616,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4762,6 +4803,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4872,9 +4914,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4949,6 +4993,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5199,6 +5244,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5285,6 +5331,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5339,6 +5386,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5355,8 +5403,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5449,6 +5500,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5469,6 +5521,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5721,6 +5774,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5811,6 +5865,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5890,6 +5945,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5898,6 +5954,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5930,6 +5987,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6073,9 +6131,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6091,6 +6151,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6115,6 +6177,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6185,6 +6248,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6208,6 +6272,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6346,6 +6411,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6486,6 +6552,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6807,6 +6876,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -7012,6 +7082,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7089,6 +7160,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7276,6 +7348,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7285,6 +7358,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7299,6 +7373,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7306,10 +7381,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7375,6 +7454,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7428,6 +7508,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7551,6 +7632,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7681,6 +7763,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7843,6 +7927,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7923,6 +8008,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7930,6 +8016,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7992,6 +8079,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8147,6 +8235,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8187,6 +8276,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8241,6 +8331,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 4368c6406046a..ce377cc70cb66 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -637,6 +639,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -760,6 +763,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1073,6 +1077,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1251,6 +1256,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1343,6 +1349,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1369,6 +1376,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1389,6 +1397,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1737,6 +1746,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1841,6 +1851,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1884,6 +1895,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1910,6 +1922,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1980,6 +1993,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2078,6 +2092,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2112,6 +2127,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2135,6 +2151,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2235,6 +2252,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2257,6 +2275,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2265,6 +2284,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2391,6 +2411,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2427,6 +2448,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2469,14 +2491,20 @@ self: super: { "dia-functions" = dontDistribute super."dia-functions"; "diagrams" = doDistribute super."diagrams_1_3"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_5"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; "diagrams-lib" = doDistribute super."diagrams-lib_1_3_0_9"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; @@ -2668,6 +2696,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2827,6 +2856,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2895,6 +2925,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2983,6 +3014,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3014,6 +3046,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3139,6 +3172,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3800,6 +3834,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3967,6 +4002,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -4302,6 +4338,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4352,6 +4389,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4380,6 +4418,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4397,6 +4436,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4526,6 +4566,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4557,6 +4598,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4743,6 +4785,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4853,9 +4896,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4930,6 +4975,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5156,6 +5202,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5178,6 +5225,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5263,6 +5311,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5317,6 +5366,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5333,8 +5383,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5427,6 +5480,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5447,6 +5501,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5699,6 +5754,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5788,6 +5844,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5867,6 +5924,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5875,6 +5933,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5907,6 +5966,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6050,9 +6110,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6068,6 +6130,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6092,6 +6156,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6162,6 +6227,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6185,6 +6251,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6322,6 +6389,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6460,6 +6528,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6781,6 +6852,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6983,6 +7055,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7060,6 +7133,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7246,6 +7320,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7255,6 +7330,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7269,6 +7345,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7276,10 +7353,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7345,6 +7426,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7398,6 +7480,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7521,6 +7604,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7651,6 +7735,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7812,6 +7898,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7892,6 +7979,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7899,6 +7987,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7958,6 +8047,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8113,6 +8203,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8153,6 +8244,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8207,6 +8299,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index d54a61d0d9de4..f10586dcc5aef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -636,6 +638,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -759,6 +762,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1072,6 +1076,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1249,6 +1254,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1341,6 +1347,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1367,6 +1374,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1387,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1735,6 +1744,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1839,6 +1849,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1882,6 +1893,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1908,6 +1920,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1977,6 +1990,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2075,6 +2089,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2109,6 +2124,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2132,6 +2148,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2231,6 +2248,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2253,6 +2271,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2261,6 +2280,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2387,6 +2407,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2423,6 +2444,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2464,12 +2486,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2658,6 +2688,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2685,6 +2716,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2816,6 +2848,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2883,6 +2916,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2971,6 +3005,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3002,6 +3037,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3127,6 +3163,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3786,6 +3823,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3953,6 +3991,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -3981,6 +4020,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4285,6 +4325,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4335,6 +4376,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4363,6 +4405,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4380,6 +4423,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4509,6 +4553,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4540,6 +4585,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4726,6 +4772,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4836,9 +4883,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4913,6 +4962,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5137,6 +5187,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5159,6 +5210,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5244,6 +5296,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5298,6 +5351,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5314,8 +5368,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5407,6 +5464,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5427,6 +5485,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5676,6 +5735,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5764,6 +5824,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5843,6 +5904,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5851,6 +5913,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5883,6 +5946,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6025,9 +6089,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6043,6 +6109,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6067,6 +6135,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6137,6 +6206,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6160,6 +6230,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6296,6 +6367,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6434,6 +6506,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6755,6 +6830,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6957,6 +7033,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7034,6 +7111,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7220,6 +7298,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7229,6 +7308,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7243,6 +7323,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7250,10 +7331,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7318,6 +7403,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7371,6 +7457,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7494,6 +7581,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7623,6 +7711,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7784,6 +7874,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7864,6 +7955,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7871,6 +7963,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7930,6 +8023,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8085,6 +8179,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8125,6 +8220,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8179,6 +8275,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 3755d3ed35cec..7743af0949ef2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -452,6 +452,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -636,6 +638,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -759,6 +762,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1072,6 +1076,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1249,6 +1254,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1341,6 +1347,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1367,6 +1374,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1387,6 +1395,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1428,6 +1437,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1733,6 +1743,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1837,6 +1848,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1880,6 +1892,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1906,6 +1919,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1973,6 +1987,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2071,6 +2086,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2105,6 +2121,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2128,6 +2145,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2227,6 +2245,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2249,6 +2268,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2257,6 +2277,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2383,6 +2404,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2419,6 +2441,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2460,12 +2483,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2654,6 +2685,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2681,6 +2713,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2812,6 +2845,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2879,6 +2913,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2967,6 +3002,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2998,6 +3034,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3123,6 +3160,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3781,6 +3819,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3948,6 +3987,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -3976,6 +4016,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4279,6 +4320,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4329,6 +4371,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4357,6 +4400,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4374,6 +4418,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4503,6 +4548,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4534,6 +4580,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4720,6 +4767,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4830,9 +4878,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4907,6 +4957,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5131,6 +5182,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5153,6 +5205,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5238,6 +5291,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5292,6 +5346,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5308,8 +5363,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5401,6 +5459,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5421,6 +5480,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5670,6 +5730,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5758,6 +5819,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5837,6 +5899,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5845,6 +5908,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5877,6 +5941,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6019,9 +6084,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6037,6 +6104,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6061,6 +6130,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6131,6 +6201,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6154,6 +6225,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6290,6 +6362,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6428,6 +6501,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6749,6 +6825,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6951,6 +7028,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7028,6 +7106,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7214,6 +7293,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7223,6 +7303,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7237,6 +7318,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7244,10 +7326,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7312,6 +7398,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7365,6 +7452,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7488,6 +7576,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7617,6 +7706,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7777,6 +7868,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7856,6 +7948,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7863,6 +7956,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7921,6 +8015,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8076,6 +8171,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8116,6 +8212,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8170,6 +8267,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 53643599858cc..1299567a772f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1875,6 +1887,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1901,6 +1914,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1968,6 +1982,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2066,6 +2081,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2100,6 +2116,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2123,6 +2140,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2221,6 +2239,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2243,6 +2262,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2251,6 +2271,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2377,6 +2398,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2413,6 +2435,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2454,12 +2477,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2648,6 +2679,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2675,6 +2707,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2806,6 +2839,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2873,6 +2907,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2961,6 +2996,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2992,6 +3028,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3115,6 +3152,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3772,6 +3810,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3937,6 +3976,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_2_3"; @@ -3965,6 +4005,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4268,6 +4309,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4318,6 +4360,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4346,6 +4389,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4363,6 +4407,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4492,6 +4537,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4523,6 +4569,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4709,6 +4756,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4818,9 +4866,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4895,6 +4945,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5118,6 +5169,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5140,6 +5192,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5225,6 +5278,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5279,6 +5333,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5295,8 +5350,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5388,6 +5446,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5408,6 +5467,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5656,6 +5716,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5744,6 +5805,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5822,6 +5884,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5830,6 +5893,7 @@ self: super: { "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; "persistent" = doDistribute super."persistent_2_2_4"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5862,6 +5926,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -6003,9 +6068,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6021,6 +6088,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6045,6 +6114,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6115,6 +6185,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6138,6 +6209,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6274,6 +6346,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6411,6 +6484,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6732,6 +6808,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6934,6 +7011,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7011,6 +7089,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7072,6 +7151,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7196,6 +7276,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7205,6 +7286,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7219,6 +7301,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7226,10 +7309,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7294,6 +7381,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7347,6 +7435,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7469,6 +7558,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7598,6 +7688,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7758,6 +7850,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7837,6 +7930,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7844,6 +7938,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7901,6 +7996,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8055,6 +8151,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8095,6 +8192,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8149,6 +8247,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index b8ae4e152110c..8b3c63bdb5160 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1874,6 +1886,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1900,6 +1913,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1965,6 +1979,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2062,6 +2077,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2096,6 +2112,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2119,6 +2136,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2217,6 +2235,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2239,6 +2258,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2247,6 +2267,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2373,6 +2394,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2409,6 +2431,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2450,12 +2473,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2644,6 +2675,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2671,6 +2703,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2802,6 +2835,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2869,6 +2903,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2957,6 +2992,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2988,6 +3024,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3111,6 +3148,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3768,6 +3806,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3932,6 +3971,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3960,6 +4000,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4262,6 +4303,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4312,6 +4354,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4340,6 +4383,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4357,6 +4401,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4486,6 +4531,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4517,6 +4563,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4703,6 +4750,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4812,9 +4860,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4889,6 +4939,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5112,6 +5163,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5134,6 +5186,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5218,6 +5271,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5272,6 +5326,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5288,8 +5343,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5381,6 +5439,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5401,6 +5460,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5649,6 +5709,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5737,6 +5798,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5815,6 +5877,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5822,6 +5885,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5833,6 +5897,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5852,6 +5917,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5993,9 +6059,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6011,6 +6079,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6035,6 +6105,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6105,6 +6176,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6128,6 +6200,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6264,6 +6337,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6401,6 +6475,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6721,6 +6798,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6923,6 +7001,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -7000,6 +7079,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7061,6 +7141,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7183,6 +7264,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7192,6 +7274,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7206,6 +7289,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7213,10 +7297,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7281,6 +7369,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7334,6 +7423,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7456,6 +7546,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7584,6 +7675,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7744,6 +7837,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7823,6 +7917,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7830,6 +7925,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7887,6 +7983,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8041,6 +8138,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8081,6 +8179,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8135,6 +8234,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index ddb17e5922d75..8454d0b5a632f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1248,6 +1253,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1340,6 +1346,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1365,6 +1372,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1385,6 +1393,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1426,6 +1435,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1729,6 +1739,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1832,6 +1843,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1874,6 +1886,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1900,6 +1913,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1965,6 +1979,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2042,6 +2057,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2061,6 +2077,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2095,6 +2112,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2118,6 +2136,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2216,6 +2235,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2238,6 +2258,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2246,6 +2267,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2372,6 +2394,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2408,6 +2431,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2449,12 +2473,20 @@ self: super: { "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; "diagrams-builder" = doDistribute super."diagrams-builder_0_7_2_2"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2643,6 +2675,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2670,6 +2703,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2801,6 +2835,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2868,6 +2903,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2956,6 +2992,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2987,6 +3024,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3110,6 +3148,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3767,6 +3806,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3931,6 +3971,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3959,6 +4000,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4261,6 +4303,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4311,6 +4354,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4339,6 +4383,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4356,6 +4401,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4485,6 +4531,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4516,6 +4563,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4702,6 +4750,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4811,9 +4860,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4888,6 +4939,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5111,6 +5163,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5133,6 +5186,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5217,6 +5271,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5271,6 +5326,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5287,8 +5343,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5380,6 +5439,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5400,6 +5460,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5648,6 +5709,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5736,6 +5798,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5814,6 +5877,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5821,6 +5885,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5832,6 +5897,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5851,6 +5917,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5992,9 +6059,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -6010,6 +6079,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6034,6 +6105,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6104,6 +6176,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6127,6 +6200,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6263,6 +6337,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6400,6 +6475,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6720,6 +6798,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6922,6 +7001,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6999,6 +7079,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7060,6 +7141,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_0"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7182,6 +7264,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7191,6 +7274,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7205,6 +7289,7 @@ self: super: { "tagsoup" = doDistribute super."tagsoup_0_13_8"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7212,10 +7297,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7280,6 +7369,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7333,6 +7423,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7455,6 +7546,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7583,6 +7675,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7743,6 +7837,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7753,6 +7848,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7821,6 +7917,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7828,6 +7925,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7884,6 +7982,7 @@ self: super: { "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; "webdriver" = doDistribute super."webdriver_0_8_1"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8038,6 +8137,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8078,6 +8178,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8132,6 +8233,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 3bb8e3ad80201..1ca18de21a3a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -451,6 +451,7 @@ self: super: { "HSGEP" = dontDistribute super."HSGEP"; "HSH" = dontDistribute super."HSH"; "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSet" = dontDistribute super."HSet"; "HSlippyMap" = dontDistribute super."HSlippyMap"; "HSmarty" = dontDistribute super."HSmarty"; "HSoundFile" = dontDistribute super."HSoundFile"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -635,6 +637,7 @@ self: super: { "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; "MonadCompose" = dontDistribute super."MonadCompose"; "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandom" = doDistribute super."MonadRandom_0_4_2_2"; "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; "MonadStack" = dontDistribute super."MonadStack"; "Monadius" = dontDistribute super."Monadius"; @@ -758,6 +761,7 @@ self: super: { "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; "Quelea" = dontDistribute super."Quelea"; @@ -1071,6 +1075,7 @@ self: super: { "acme-timemachine" = dontDistribute super."acme-timemachine"; "acme-year" = dontDistribute super."acme-year"; "acme-zero" = dontDistribute super."acme-zero"; + "active" = doDistribute super."active_0_2_0_8"; "activehs" = dontDistribute super."activehs"; "activehs-base" = dontDistribute super."activehs-base"; "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; @@ -1247,6 +1252,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1339,6 +1345,7 @@ self: super: { "astrds" = dontDistribute super."astrds"; "astview" = dontDistribute super."astview"; "astview-utils" = dontDistribute super."astview-utils"; + "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0"; "async-extras" = dontDistribute super."async-extras"; "async-manager" = dontDistribute super."async-manager"; "async-pool" = dontDistribute super."async-pool"; @@ -1364,6 +1371,7 @@ self: super: { "atrans" = dontDistribute super."atrans"; "attempt" = dontDistribute super."attempt"; "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_13_0_1"; "attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; @@ -1384,6 +1392,7 @@ self: super: { "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; + "auto-update" = doDistribute super."auto-update_0_1_3"; "autoexporter" = dontDistribute super."autoexporter"; "automitive-cse" = dontDistribute super."automitive-cse"; "automotive-cse" = dontDistribute super."automotive-cse"; @@ -1425,6 +1434,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_18"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1728,6 +1738,7 @@ self: super: { "cabal-cargs" = dontDistribute super."cabal-cargs"; "cabal-constraints" = dontDistribute super."cabal-constraints"; "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_32_2"; "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; "cabal-dev" = dontDistribute super."cabal-dev"; "cabal-dir" = dontDistribute super."cabal-dir"; @@ -1830,6 +1841,7 @@ self: super: { "categorical-algebra" = dontDistribute super."categorical-algebra"; "categories" = dontDistribute super."categories"; "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; @@ -1872,6 +1884,7 @@ self: super: { "chatty" = dontDistribute super."chatty"; "chatty-text" = dontDistribute super."chatty-text"; "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate" = doDistribute super."cheapskate_0_1_0_4"; "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; @@ -1898,6 +1911,7 @@ self: super: { "cipher-rc5" = dontDistribute super."cipher-rc5"; "ciphersaber2" = dontDistribute super."ciphersaber2"; "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; "cirru-parser" = dontDistribute super."cirru-parser"; "citation-resolve" = dontDistribute super."citation-resolve"; "citeproc-hs" = dontDistribute super."citeproc-hs"; @@ -1963,6 +1977,7 @@ self: super: { "cmdtheline" = dontDistribute super."cmdtheline"; "cml" = dontDistribute super."cml"; "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; "cmu" = dontDistribute super."cmu"; "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; "cndict" = dontDistribute super."cndict"; @@ -2040,6 +2055,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = doDistribute super."concurrent-output_1_7_4"; "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; @@ -2059,6 +2075,7 @@ self: super: { "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; "conf" = dontDistribute super."conf"; @@ -2093,6 +2110,7 @@ self: super: { "continued-fractions" = dontDistribute super."continued-fractions"; "continuum" = dontDistribute super."continuum"; "continuum-client" = dontDistribute super."continuum-client"; + "contravariant-extras" = doDistribute super."contravariant-extras_0_3_1"; "control-event" = dontDistribute super."control-event"; "control-monad-attempt" = dontDistribute super."control-monad-attempt"; "control-monad-exception" = dontDistribute super."control-monad-exception"; @@ -2116,6 +2134,7 @@ self: super: { "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; "cookbook" = dontDistribute super."cookbook"; + "cookie" = doDistribute super."cookie_0_4_1_6"; "coordinate" = dontDistribute super."coordinate"; "copilot" = dontDistribute super."copilot"; "copilot-c99" = dontDistribute super."copilot-c99"; @@ -2214,6 +2233,7 @@ self: super: { "ctemplate" = dontDistribute super."ctemplate"; "ctkl" = dontDistribute super."ctkl"; "ctpl" = dontDistribute super."ctpl"; + "ctrie" = doDistribute super."ctrie_0_1_0_3"; "cube" = dontDistribute super."cube"; "cubical" = dontDistribute super."cubical"; "cubicbezier" = dontDistribute super."cubicbezier"; @@ -2236,6 +2256,7 @@ self: super: { "cyclotomic" = dontDistribute super."cyclotomic"; "cypher" = dontDistribute super."cypher"; "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; "d3js" = dontDistribute super."d3js"; "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; "daemons" = dontDistribute super."daemons"; @@ -2244,6 +2265,7 @@ self: super: { "danibot" = dontDistribute super."danibot"; "dao" = dontDistribute super."dao"; "dapi" = dontDistribute super."dapi"; + "darcs" = doDistribute super."darcs_2_10_3"; "darcs-benchmark" = dontDistribute super."darcs-benchmark"; "darcs-beta" = dontDistribute super."darcs-beta"; "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; @@ -2370,6 +2392,7 @@ self: super: { "ddc-build" = dontDistribute super."ddc-build"; "ddc-code" = dontDistribute super."ddc-code"; "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; "ddc-core-eval" = dontDistribute super."ddc-core-eval"; "ddc-core-flow" = dontDistribute super."ddc-core-flow"; "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; @@ -2406,6 +2429,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_2_0_0"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2446,12 +2470,20 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-cairo" = doDistribute super."diagrams-cairo_1_3_0_5"; + "diagrams-canvas" = doDistribute super."diagrams-canvas_1_3_0_3"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_8"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_6"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-html5" = doDistribute super."diagrams-html5_1_3_0_4"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_1"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_4"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-tikz" = dontDistribute super."diagrams-tikz"; @@ -2640,6 +2672,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editpipe" = dontDistribute super."editpipe"; + "effect-handlers" = doDistribute super."effect-handlers_0_1_0_7"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2667,6 +2700,7 @@ self: super: { "elevator" = dontDistribute super."elevator"; "elf" = dontDistribute super."elf"; "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1"; "elm-build-lib" = dontDistribute super."elm-build-lib"; "elm-compiler" = dontDistribute super."elm-compiler"; "elm-get" = dontDistribute super."elm-get"; @@ -2798,6 +2832,7 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2865,6 +2900,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-embed" = doDistribute super."file-embed_0_0_9_1"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2953,6 +2989,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_3"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2984,6 +3021,7 @@ self: super: { "frame" = dontDistribute super."frame"; "frame-markdown" = dontDistribute super."frame-markdown"; "franchise" = dontDistribute super."franchise"; + "freddy" = dontDistribute super."freddy"; "free-concurrent" = dontDistribute super."free-concurrent"; "free-functors" = dontDistribute super."free-functors"; "free-game" = dontDistribute super."free-game"; @@ -3107,6 +3145,7 @@ self: super: { "geniconvert" = dontDistribute super."geniconvert"; "genifunctors" = dontDistribute super."genifunctors"; "geniplate" = dontDistribute super."geniplate"; + "geniplate-mirror" = doDistribute super."geniplate-mirror_0_7_2"; "geniserver" = dontDistribute super."geniserver"; "genprog" = dontDistribute super."genprog"; "gentlemark" = dontDistribute super."gentlemark"; @@ -3762,6 +3801,7 @@ self: super: { "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = doDistribute super."hasty-hamiltonian_1_1_2"; "hat" = dontDistribute super."hat"; "hatex-guide" = dontDistribute super."hatex-guide"; "hath" = dontDistribute super."hath"; @@ -3924,6 +3964,7 @@ self: super: { "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; "hinduce-examples" = dontDistribute super."hinduce-examples"; "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; "hinquire" = dontDistribute super."hinquire"; "hinstaller" = dontDistribute super."hinstaller"; "hint" = doDistribute super."hint_0_4_3"; @@ -3952,6 +3993,7 @@ self: super: { "hjcase" = dontDistribute super."hjcase"; "hjpath" = dontDistribute super."hjpath"; "hjs" = dontDistribute super."hjs"; + "hjsmin" = doDistribute super."hjsmin_0_1_5_3"; "hjson" = dontDistribute super."hjson"; "hjson-query" = dontDistribute super."hjson-query"; "hjsonpointer" = dontDistribute super."hjsonpointer"; @@ -4254,6 +4296,7 @@ self: super: { "hsshellscript" = dontDistribute super."hsshellscript"; "hssourceinfo" = dontDistribute super."hssourceinfo"; "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; "hstats" = dontDistribute super."hstats"; "hstest" = dontDistribute super."hstest"; "hstidy" = dontDistribute super."hstidy"; @@ -4304,6 +4347,7 @@ self: super: { "http-conduit" = doDistribute super."http-conduit_2_1_8"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; "http-encodings" = dontDistribute super."http-encodings"; "http-enumerator" = dontDistribute super."http-enumerator"; "http-kinder" = dontDistribute super."http-kinder"; @@ -4332,6 +4376,7 @@ self: super: { "hulk" = dontDistribute super."hulk"; "hums" = dontDistribute super."hums"; "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0"; "hunit-gui" = dontDistribute super."hunit-gui"; "hunit-parsec" = dontDistribute super."hunit-parsec"; "hunit-rematch" = dontDistribute super."hunit-rematch"; @@ -4349,6 +4394,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; "hw-succinct" = dontDistribute super."hw-succinct"; @@ -4476,6 +4522,7 @@ self: super: { "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; "inquire" = dontDistribute super."inquire"; "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; "inserts" = dontDistribute super."inserts"; @@ -4507,6 +4554,7 @@ self: super: { "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; "invertible-syntax" = dontDistribute super."invertible-syntax"; "io-capture" = dontDistribute super."io-capture"; "io-choice" = doDistribute super."io-choice_0_0_5"; @@ -4615,6 +4663,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4691,6 +4740,7 @@ self: super: { "keera-posture" = dontDistribute super."keera-posture"; "keiretsu" = dontDistribute super."keiretsu"; "kevin" = dontDistribute super."kevin"; + "keycode" = doDistribute super."keycode_0_1_1"; "keyed" = dontDistribute super."keyed"; "keyring" = dontDistribute super."keyring"; "keystore" = dontDistribute super."keystore"; @@ -4800,9 +4850,11 @@ self: super: { "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; "language-typescript" = dontDistribute super."language-typescript"; "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; "lat" = dontDistribute super."lat"; "latest-npm-version" = dontDistribute super."latest-npm-version"; "latex" = dontDistribute super."latex"; + "latex-formulae-hakyll" = doDistribute super."latex-formulae-hakyll_0_2_0_1"; "launchpad-control" = dontDistribute super."launchpad-control"; "lax" = dontDistribute super."lax"; "layers" = dontDistribute super."layers"; @@ -4877,6 +4929,7 @@ self: super: { "libpq" = dontDistribute super."libpq"; "librandomorg" = dontDistribute super."librandomorg"; "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; "libssh2" = dontDistribute super."libssh2"; "libssh2-conduit" = dontDistribute super."libssh2-conduit"; "libstackexchange" = dontDistribute super."libstackexchange"; @@ -5100,6 +5153,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_1_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5122,6 +5176,7 @@ self: super: { "mastermind" = dontDistribute super."mastermind"; "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; + "math-functions" = doDistribute super."math-functions_0_1_5_2"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; "mathista" = dontDistribute super."mathista"; @@ -5206,6 +5261,7 @@ self: super: { "mime" = dontDistribute super."mime"; "mime-directory" = dontDistribute super."mime-directory"; "mime-string" = dontDistribute super."mime-string"; + "mime-types" = doDistribute super."mime-types_0_1_0_6"; "mines" = dontDistribute super."mines"; "minesweeper" = dontDistribute super."minesweeper"; "miniball" = dontDistribute super."miniball"; @@ -5260,6 +5316,7 @@ self: super: { "monad-hash" = dontDistribute super."monad-hash"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -5276,8 +5333,11 @@ self: super: { "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; "monad-supply" = dontDistribute super."monad-supply"; "monad-task" = dontDistribute super."monad-task"; + "monad-time" = doDistribute super."monad-time_0_1"; "monad-tx" = dontDistribute super."monad-tx"; "monad-unify" = dontDistribute super."monad-unify"; + "monad-unlift" = doDistribute super."monad-unlift_0_1_1_0"; + "monad-unlift-ref" = dontDistribute super."monad-unlift-ref"; "monad-wrap" = dontDistribute super."monad-wrap"; "monadIO" = dontDistribute super."monadIO"; "monadLib-compose" = dontDistribute super."monadLib-compose"; @@ -5369,6 +5429,7 @@ self: super: { "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; "murmur" = dontDistribute super."murmur"; + "murmur-hash" = doDistribute super."murmur-hash_0_1_0_8"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5389,6 +5450,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5636,6 +5698,7 @@ self: super: { "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "opensource" = dontDistribute super."opensource"; "openssh-github-keys" = dontDistribute super."openssh-github-keys"; "openssl-createkey" = dontDistribute super."openssl-createkey"; "opentheory" = dontDistribute super."opentheory"; @@ -5722,6 +5785,7 @@ self: super: { "parallel-tasks" = dontDistribute super."parallel-tasks"; "parallel-tree-search" = dontDistribute super."parallel-tree-search"; "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; "parco" = dontDistribute super."parco"; "parco-attoparsec" = dontDistribute super."parco-attoparsec"; "parco-parsec" = dontDistribute super."parco-parsec"; @@ -5799,6 +5863,7 @@ self: super: { "peparser" = dontDistribute super."peparser"; "perceptron" = dontDistribute super."perceptron"; "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; "period" = dontDistribute super."period"; "perm" = dontDistribute super."perm"; "permutation" = dontDistribute super."permutation"; @@ -5806,6 +5871,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-audit" = dontDistribute super."persistent-audit"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-database-url" = dontDistribute super."persistent-database-url"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; @@ -5817,6 +5883,7 @@ self: super: { "persistent-protobuf" = dontDistribute super."persistent-protobuf"; "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-template" = doDistribute super."persistent-template_2_1_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5836,6 +5903,7 @@ self: super: { "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; @@ -5977,9 +6045,11 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; "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-transactional" = dontDistribute super."postgresql-transactional"; "postgresql-typed" = dontDistribute super."postgresql-typed"; "postgrest" = dontDistribute super."postgrest"; "postie" = dontDistribute super."postie"; @@ -5995,6 +6065,8 @@ self: super: { "pqueue-mtl" = dontDistribute super."pqueue-mtl"; "practice-room" = dontDistribute super."practice-room"; "precis" = dontDistribute super."precis"; + "pred-set" = dontDistribute super."pred-set"; + "pred-trie" = doDistribute super."pred-trie_0_5_0"; "predicates" = dontDistribute super."predicates"; "prednote-test" = dontDistribute super."prednote-test"; "prefork" = dontDistribute super."prefork"; @@ -6019,6 +6091,7 @@ self: super: { "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; "prim-uniq" = dontDistribute super."prim-uniq"; "primitive-simd" = dontDistribute super."primitive-simd"; "primula-board" = dontDistribute super."primula-board"; @@ -6089,6 +6162,7 @@ self: super: { "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; "psql-helpers" = dontDistribute super."psql-helpers"; + "psqueues" = doDistribute super."psqueues_0_2_2_0"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; "publicsuffixlist" = dontDistribute super."publicsuffixlist"; @@ -6112,6 +6186,7 @@ self: super: { "purescript" = doDistribute super."purescript_0_7_6_1"; "purescript-bridge" = dontDistribute super."purescript-bridge"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; "push-notify-general" = dontDistribute super."push-notify-general"; @@ -6248,6 +6323,7 @@ self: super: { "read-env-var" = dontDistribute super."read-env-var"; "readline-statevar" = dontDistribute super."readline-statevar"; "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; "reasonable-lens" = dontDistribute super."reasonable-lens"; "reasonable-operational" = dontDistribute super."reasonable-operational"; @@ -6385,6 +6461,9 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; + "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -6627,9 +6706,13 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-client" = doDistribute super."servant-client_0_4_4_7"; "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-docs" = doDistribute super."servant-docs_0_4_4_7"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; @@ -6644,6 +6727,7 @@ self: super: { "servant-postgresql" = dontDistribute super."servant-postgresql"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6699,6 +6783,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; "shine-varying" = dontDistribute super."shine-varying"; @@ -6899,6 +6984,7 @@ self: super: { "spacepart" = dontDistribute super."spacepart"; "spaceprobe" = dontDistribute super."spaceprobe"; "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; "sparse" = dontDistribute super."sparse"; "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; "sparsebit" = dontDistribute super."sparsebit"; @@ -6976,6 +7062,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_6"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7037,6 +7124,7 @@ self: super: { "streamed" = dontDistribute super."streamed"; "streaming" = doDistribute super."streaming_0_1_4_0"; "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_2"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7159,6 +7247,7 @@ self: super: { "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; "table-tennis" = dontDistribute super."table-tennis"; "tableaux" = dontDistribute super."tableaux"; "tables" = dontDistribute super."tables"; @@ -7168,6 +7257,7 @@ self: super: { "tag-bits" = dontDistribute super."tag-bits"; "tag-stream" = dontDistribute super."tag-stream"; "tagchup" = dontDistribute super."tagchup"; + "tagged" = doDistribute super."tagged_0_8_3"; "tagged-exception-core" = dontDistribute super."tagged-exception-core"; "tagged-list" = dontDistribute super."tagged-list"; "tagged-th" = dontDistribute super."tagged-th"; @@ -7181,6 +7271,7 @@ self: super: { "tagset-positional" = dontDistribute super."tagset-positional"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; "takahashi" = dontDistribute super."takahashi"; "takusen-oracle" = dontDistribute super."takusen-oracle"; "tamarin-prover" = dontDistribute super."tamarin-prover"; @@ -7188,10 +7279,14 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_5_0_1"; + "tardis" = doDistribute super."tardis_0_3_0_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_11_0_2"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -7256,6 +7351,7 @@ self: super: { "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; "test-shouldbe" = dontDistribute super."test-shouldbe"; "testPkg" = dontDistribute super."testPkg"; + "testing-feat" = doDistribute super."testing-feat_0_4_0_2"; "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; "testloop" = dontDistribute super."testloop"; "testpack" = dontDistribute super."testpack"; @@ -7308,6 +7404,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; "th-printf" = dontDistribute super."th-printf"; + "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; @@ -7430,6 +7527,7 @@ self: super: { "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-eff" = dontDistribute super."transformers-eff"; "transformers-free" = dontDistribute super."transformers-free"; + "transformers-lift" = doDistribute super."transformers-lift_0_1_0_0"; "transformers-runnable" = dontDistribute super."transformers-runnable"; "transformers-supply" = dontDistribute super."transformers-supply"; "transient" = dontDistribute super."transient"; @@ -7558,6 +7656,8 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_0_1"; + "tzdata" = doDistribute super."tzdata_0_1_20150810_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; @@ -7718,6 +7818,7 @@ self: super: { "vcache" = dontDistribute super."vcache"; "vcache-trie" = dontDistribute super."vcache-trie"; "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; "vcd" = dontDistribute super."vcd"; "vcs-revision" = dontDistribute super."vcs-revision"; "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; @@ -7728,6 +7829,7 @@ self: super: { "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; "vector-binary" = dontDistribute super."vector-binary"; + "vector-binary-instances" = doDistribute super."vector-binary-instances_0_2_3_1"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; "vector-conduit" = dontDistribute super."vector-conduit"; @@ -7796,6 +7898,7 @@ self: super: { "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_0_5"; "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; "wai-handler-snap" = dontDistribute super."wai-handler-snap"; "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; @@ -7803,6 +7906,7 @@ self: super: { "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7858,6 +7962,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; "webidl" = dontDistribute super."webidl"; @@ -8012,6 +8117,7 @@ self: super: { "xsd" = dontDistribute super."xsd"; "xsha1" = dontDistribute super."xsha1"; "xslt" = dontDistribute super."xslt"; + "xss-sanitize" = doDistribute super."xss-sanitize_0_3_5_6"; "xtc" = dontDistribute super."xtc"; "xtest" = dontDistribute super."xtest"; "xturtle" = dontDistribute super."xturtle"; @@ -8052,6 +8158,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-account" = doDistribute super."yesod-auth-account_1_4_1"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; @@ -8105,6 +8212,7 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7"; "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 903f2c3a3a14e..8a88cce67538d 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1968,7 +1968,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_2" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -1991,9 +1991,10 @@ self: { 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_2_1" = callPackage + "BlogLiterately" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2016,7 +2017,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 @@ -2821,6 +2821,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Cabal_1_24_0_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , deepseq, directory, exceptions, filepath, old-time, pretty + , process, QuickCheck, regex-posix, tagged, tasty, tasty-hunit + , tasty-quickcheck, time, transformers, unix + }: + mkDerivation { + pname = "Cabal"; + version = "1.24.0.0"; + sha256 = "c00e9d372adb49ce1bd5b62ff049cf49adc4a312a271b238894e50eb707297aa"; + libraryHaskellDepends = [ + array base binary bytestring containers deepseq directory filepath + pretty process time unix + ]; + testHaskellDepends = [ + base bytestring containers directory exceptions filepath old-time + pretty process QuickCheck regex-posix tagged tasty tasty-hunit + tasty-quickcheck transformers unix + ]; + 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 @@ -3082,6 +3107,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart_1_7_1" = callPackage + ({ mkDerivation, array, base, colour, data-default-class, lens, mtl + , old-locale, operational, time, vector + }: + mkDerivation { + pname = "Chart"; + version = "1.7.1"; + sha256 = "068e8ec72dbc3bb7ddaca052729cb0a187df6d3828978966b1c15c8ac36be610"; + libraryHaskellDepends = [ + array base colour data-default-class lens mtl old-locale + operational time vector + ]; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "A library for generating 2D Charts and Plots"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-cairo_1_5_1" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time @@ -3137,6 +3180,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart-cairo_1_7_1" = callPackage + ({ mkDerivation, array, base, cairo, Chart, colour + , data-default-class, lens, mtl, old-locale, operational, time + }: + mkDerivation { + pname = "Chart-cairo"; + version = "1.7.1"; + sha256 = "3f3cffb7b971b45b0ace2c45f2916df1fc9b5473b49c4f0fc86937802790fe01"; + libraryHaskellDepends = [ + array base cairo Chart colour data-default-class lens mtl + old-locale operational time + ]; + jailbreak = true; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Cairo backend for Charts"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-diagrams_1_3_2" = callPackage ({ mkDerivation, base, blaze-svg, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib @@ -3250,18 +3312,42 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Chart-diagrams_1_7_1" = callPackage + ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour + , containers, data-default-class, diagrams-core, diagrams-lib + , diagrams-postscript, diagrams-svg, lens, mtl, old-locale + , operational, svg-builder, SVGFonts, text, time + }: + mkDerivation { + pname = "Chart-diagrams"; + version = "1.7.1"; + sha256 = "d88af0adbe2bd9e208bcd27fda55810031ce09438801fc2bc25da15c414805c5"; + libraryHaskellDepends = [ + base blaze-markup bytestring Chart colour containers + data-default-class diagrams-core diagrams-lib diagrams-postscript + diagrams-svg lens mtl old-locale operational svg-builder SVGFonts + text time + ]; + jailbreak = true; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Diagrams backend for Charts"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Chart-gtk" = callPackage ({ mkDerivation, array, base, cairo, Chart, Chart-cairo, colour , data-default-class, gtk, mtl, old-locale, time }: mkDerivation { pname = "Chart-gtk"; - version = "1.6"; - sha256 = "f566a4fbdfcca207640a76e2c953617b27954e3f49258c7ab425270379b954c7"; + version = "1.7"; + sha256 = "6adba9e92f11cebba5b3487352bd4a750b325b5fe0e17b1dfd02a920618d9991"; libraryHaskellDepends = [ array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; @@ -7435,15 +7521,17 @@ self: { }) {}; "Gifcurry" = callPackage - ({ mkDerivation, base, directory, gtk3, process, temporary }: + ({ mkDerivation, base, cmdargs, directory, gtk3, process, temporary + }: mkDerivation { pname = "Gifcurry"; - version = "0.1.1.0"; - sha256 = "21f72f6c440eec80cb2e7df3fc8ed65124b64ab45ba55b4adf5dfccdca0e257a"; - isLibrary = false; + version = "2.0.0.0"; + sha256 = "c6a13b6a4f1fcaf3d24428862222f52d383570eb4d5872e21cb5e2882d936809"; + isLibrary = true; isExecutable = true; + libraryHaskellDepends = [ base directory process temporary ]; executableHaskellDepends = [ - base directory gtk3 process temporary + base cmdargs directory gtk3 process temporary ]; homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; @@ -9220,6 +9308,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "HSet" = callPackage + ({ mkDerivation, base, containers, hashable, hashtables }: + mkDerivation { + pname = "HSet"; + version = "0.0.0"; + sha256 = "8b336a5f5c68d23683b7f69a5fcc02c7a9f869b7570799cf81cd26c37ea70426"; + libraryHaskellDepends = [ base containers hashable hashtables ]; + description = "Faux heterogeneous sets"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "HSlippyMap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -10685,7 +10784,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "HaskellNet-SSL" = callPackage + "HaskellNet-SSL_0_3_2_1" = callPackage ({ mkDerivation, base, bytestring, connection, data-default , HaskellNet, network, tls }: @@ -10699,6 +10798,23 @@ self: { homepage = "https://github.com/dpwright/HaskellNet-SSL"; description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HaskellNet-SSL" = callPackage + ({ mkDerivation, base, bytestring, connection, data-default + , HaskellNet, network, tls + }: + mkDerivation { + pname = "HaskellNet-SSL"; + version = "0.3.3.0"; + sha256 = "177d462b939dcb1ebab9cabf5ab5d49d969c80a8de1732bc6e1613780b8fd5f4"; + libraryHaskellDepends = [ + base bytestring connection data-default HaskellNet network tls + ]; + homepage = "https://github.com/dpwright/HaskellNet-SSL"; + description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; + license = stdenv.lib.licenses.bsd3; }) {}; "HaskellTorrent" = callPackage @@ -14093,7 +14209,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "MonadRandom" = callPackage + "MonadRandom_0_4_2_2" = callPackage ({ mkDerivation, base, mtl, random, transformers , transformers-compat }: @@ -14106,9 +14222,10 @@ self: { ]; description = "Random-number generation monad"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "MonadRandom_0_4_2_3" = callPackage + "MonadRandom" = callPackage ({ mkDerivation, base, mtl, random, transformers , transformers-compat }: @@ -14121,7 +14238,6 @@ self: { ]; description = "Random-number generation monad"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadRandomLazy" = callPackage @@ -15997,13 +16113,12 @@ self: { }: mkDerivation { pname = "PerfectHash"; - version = "0.1.4"; - sha256 = "76de68a4acda732bff57a13b6a7855469e9924569206b02eb401498f362d40c2"; + version = "0.1.5"; + sha256 = "3c59408ee1d6fef7a6f8d5c778947503a6eb21c861d0a9ad9be39847ae75173a"; libraryHaskellDepends = [ array base binary bytestring containers digest time ]; librarySystemDepends = [ cmph ]; - jailbreak = true; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -16459,6 +16574,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "QLearn" = callPackage + ({ mkDerivation, base, random, vector }: + mkDerivation { + pname = "QLearn"; + version = "0.1.0.0"; + sha256 = "87d899997011c59e0f1f1a7efa434aa026e5c67f13681cdbe68ac8d300db736d"; + libraryHaskellDepends = [ base random vector ]; + homepage = "poincare.github.io/QLearn"; + description = "A library for fast, easy-to-use Q-learning"; + license = stdenv.lib.licenses.mit; + }) {}; + "QuadEdge" = callPackage ({ mkDerivation, base, random, vector }: mkDerivation { @@ -16934,8 +17061,8 @@ self: { }: mkDerivation { pname = "RNAlien"; - version = "1.1.1"; - sha256 = "975a187bbe34324b62e57fb132e9dd38ada86409bb010b1631c8c5b86346ebee"; + version = "1.1.3"; + sha256 = "d7d0c3fdbac52be1df3c122a400c3471c6bdeed5e148b742fb77364751029e5d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -21968,6 +22095,8 @@ self: { pname = "accelerate-examples"; version = "0.15.1.0"; sha256 = "2191601709da693aedb29f570e44b899b5132d2bc05fe618bc93608a43fec4a2"; + revision = "1"; + editedCabalFile = "77df83db322287253ea831448eced5c2adff5fe3edc413392cfb0eb8bdb0833b"; configureFlags = [ "-f-opencl" ]; isLibrary = true; isExecutable = true; @@ -21985,6 +22114,7 @@ self: { repa-io test-framework test-framework-hunit test-framework-quickcheck2 vector vector-algorithms ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-examples"; description = "Examples using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -22826,7 +22956,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "active" = callPackage + "active_0_2_0_8" = callPackage ({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids , semigroups, vector }: @@ -22842,6 +22972,25 @@ self: { ]; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "active" = callPackage + ({ mkDerivation, base, lens, linear, QuickCheck, semigroupoids + , semigroups, vector + }: + mkDerivation { + pname = "active"; + version = "0.2.0.9"; + sha256 = "b0d1f0f60abccf913da8a14d83672333ca4b0b55346a43d7de2656bdb8926b75"; + libraryHaskellDepends = [ + base lens linear semigroupoids semigroups vector + ]; + testHaskellDepends = [ + base lens linear QuickCheck semigroupoids semigroups vector + ]; + description = "Abstractions for animation"; + license = stdenv.lib.licenses.bsd3; }) {}; "activehs" = callPackage @@ -23445,8 +23594,8 @@ self: { }: mkDerivation { pname = "aeson"; - version = "0.11.1.4"; - sha256 = "59ee31bb0fe71ae68bbfa3f3b977443ff200c6dfaaa442485e7295a75fcf7845"; + version = "0.11.2.0"; + sha256 = "447a454b51b8d6ca9e3b59bc5918115a880a9320afeb9030000fe6c87fd2285e"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific semigroups syb tagged template-haskell text @@ -23596,13 +23745,14 @@ self: { tasty-quickcheck text time time-locale-compat unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-compat" = callPackage + "aeson-compat_0_3_2_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans , bytestring, containers, exceptions, hashable, nats, QuickCheck , quickcheck-instances, scientific, semigroups, tagged, tasty @@ -23624,6 +23774,35 @@ self: { scientific semigroups tagged tasty tasty-hunit tasty-quickcheck text time time-locale-compat unordered-containers vector ]; + jailbreak = true; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans + , bytestring, containers, exceptions, hashable, nats, QuickCheck + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.3.0"; + sha256 = "33a6a4c8d41b3ee08432c1ed0f118b595cd582cffb81b8621ad0bbd3164eb7e4"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring containers exceptions + hashable nats scientific semigroups tagged text time + time-locale-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat base-orphans bytestring + containers exceptions hashable nats QuickCheck quickcheck-instances + scientific semigroups tagged tasty tasty-hunit tasty-quickcheck + text time time-locale-compat unordered-containers vector + ]; homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; @@ -24389,24 +24568,6 @@ self: { }) {}; "agda-snippets-hakyll" = callPackage - ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll - , network-uri, pandoc, pandoc-types - }: - mkDerivation { - pname = "agda-snippets-hakyll"; - version = "0.1.2.0"; - sha256 = "83829a3599fe61a81747e7054659902fbf7258cf08fb61dd6fc47fae06e699d9"; - libraryHaskellDepends = [ - agda-snippets base directory filepath hakyll network-uri pandoc - pandoc-types - ]; - homepage = "https://github.com/liamoc/agda-snippets#readme"; - description = "Literate Agda support using agda-snippets, for Hakyll pages"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "agda-snippets-hakyll_0_1_2_1" = callPackage ({ mkDerivation, agda-snippets, base, directory, filepath, hakyll , network-uri, pandoc, pandoc-types }: @@ -30645,6 +30806,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "annah" = callPackage + ({ mkDerivation, alex, array, base, Earley, lens-family-core, morte + , optparse-applicative, pipes, system-fileio, system-filepath, text + , text-format, transformers + }: + mkDerivation { + pname = "annah"; + version = "1.0.0"; + sha256 = "a07a92ebc41ac5af31cce2b41c9dd311f92ca52e05c2aaea756aebdcceb00389"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base Earley lens-family-core morte pipes system-filepath text + text-format transformers + ]; + libraryToolDepends = [ alex ]; + executableHaskellDepends = [ + base morte optparse-applicative system-fileio system-filepath text + ]; + description = "Medium-level language that desugars to Morte"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "annihilator" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -32015,8 +32199,8 @@ self: { }: mkDerivation { pname = "arb-fft"; - version = "0.2.0.2"; - sha256 = "b719edb18b07ec45ce091d9d0269b846e36844a63a2da2f613bd87b3bf53b0fb"; + version = "0.3.0.0"; + sha256 = "4788916d5a3a5a5844ff1cf0b3a28d577aeacd3c214b58ccaee7552bd3c40fcc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -32027,7 +32211,6 @@ self: { testHaskellDepends = [ base containers QuickCheck tasty tasty-quickcheck vector ]; - jailbreak = true; homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; @@ -33535,7 +33718,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "async-dejafu" = callPackage + "async-dejafu_0_1_0_0" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: mkDerivation { pname = "async-dejafu"; @@ -33546,21 +33729,20 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Run MonadConc operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "async-dejafu_0_1_1_0" = callPackage + "async-dejafu" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: mkDerivation { pname = "async-dejafu"; - version = "0.1.1.0"; - sha256 = "13a3b0bd80363d90fee27abcab299082b4947bf1197716e9f7df9dbace306595"; + version = "0.1.2.1"; + sha256 = "084e4e8345ed6d4e4d2d9dc840e6c471384ae6ac51d9678ac5e82246a359d39d"; libraryHaskellDepends = [ base dejafu exceptions ]; testHaskellDepends = [ base dejafu HUnit hunit-dejafu ]; - jailbreak = true; homepage = "https://github.com/barrucadu/dejafu"; description = "Run MonadConc operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-extras" = callPackage @@ -34146,7 +34328,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "attoparsec" = callPackage + "attoparsec_0_13_0_1" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , QuickCheck, quickcheck-unicode, scientific, test-framework , test-framework-quickcheck2, text, transformers, vector @@ -34167,9 +34349,10 @@ self: { homepage = "https://github.com/bos/attoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "attoparsec_0_13_0_2" = callPackage + "attoparsec" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , QuickCheck, quickcheck-unicode, scientific, tasty , tasty-quickcheck, text, transformers, vector @@ -34189,7 +34372,6 @@ self: { homepage = "https://github.com/bos/attoparsec"; description = "Fast combinator parsing for bytestrings and text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-arff" = callPackage @@ -34716,7 +34898,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "auto-update" = callPackage + "auto-update_0_1_3" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "auto-update"; @@ -34726,29 +34908,27 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath }: + "auto-update" = callPackage + ({ mkDerivation, base }: mkDerivation { - pname = "autoexporter"; - version = "0.2.0"; - sha256 = "e4c0145475197dd5dd61639d88c406090d472daa7bac28e9be70a230994bb8db"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base ]; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; + pname = "auto-update"; + version = "0.1.3.1"; + sha256 = "01367ac53d1951ffdccfccbf338d00d3605967cf717f2404b9901a206385427c"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Efficiently run periodic, on-demand actions"; license = stdenv.lib.licenses.mit; }) {}; - "autoexporter_0_2_1" = callPackage + "autoexporter" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { pname = "autoexporter"; - version = "0.2.1"; - sha256 = "fe46d1f434862dfaa4fd245c66d4a96ea8c4f3f8c3314ca6fc844e97e71097e4"; + version = "0.2.2"; + sha256 = "2ad4c6d948984c0a5542f5ce87d806b3597088083bc179217d36d08380880d03"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base Cabal directory filepath ]; @@ -34756,7 +34936,6 @@ self: { homepage = "https://github.com/tfausak/autoexporter#readme"; description = "Automatically re-export modules"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "automitive-cse" = callPackage @@ -34783,8 +34962,8 @@ self: { }: mkDerivation { pname = "automotive-cse"; - version = "0.1.2.0"; - sha256 = "97873ddb30997908e2e82d30a8ffff21d16280efa3be2b9985d69794ccfc515a"; + version = "0.1.3.0"; + sha256 = "71b59c50b29748ae5991d53af5a7bed6ee283942e1df69c0b3c9da8107d06b9c"; libraryHaskellDepends = [ base bytestring bytestring-short cereal cryptonite memory ]; @@ -36173,7 +36352,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9" = callPackage + "b9_0_5_18" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hashable, hspec, hspec-expectations, mtl @@ -36204,6 +36383,40 @@ self: { homepage = "https://github.com/sheyll/b9-vm-image-builder"; description = "A tool and library for building virtual machine images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "b9" = callPackage + ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes + , bytestring, conduit, conduit-extra, ConfigFile, directory + , filepath, free, hashable, hspec, hspec-expectations, mtl + , optparse-applicative, parallel, parsec, pretty, pretty-show + , process, QuickCheck, random, semigroups, syb, template, text + , time, transformers, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "b9"; + version = "0.5.19"; + sha256 = "ea2706b4b0729a3250b6b5da718fb70845df9594eda7c7fb633cdb7eb53b3b56"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base bifunctors binary boxes bytestring conduit + conduit-extra ConfigFile directory filepath free hashable mtl + parallel parsec pretty pretty-show process QuickCheck random + semigroups syb template text time transformers unordered-containers + vector yaml + ]; + executableHaskellDepends = [ + base bytestring directory optparse-applicative + ]; + testHaskellDepends = [ + aeson base bytestring hspec hspec-expectations QuickCheck + semigroups text unordered-containers vector yaml + ]; + homepage = "https://github.com/sheyll/b9-vm-image-builder"; + description = "A tool and library for building virtual machine images"; + license = stdenv.lib.licenses.mit; }) {}; "babylon" = callPackage @@ -37634,6 +37847,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bcrypt_0_0_9" = callPackage + ({ mkDerivation, base, bytestring, data-default, entropy, memory }: + mkDerivation { + pname = "bcrypt"; + version = "0.0.9"; + sha256 = "33b87031fe80d2be666df7e892b11dcb35f630d7fb93dd95e3920d86b5c91553"; + libraryHaskellDepends = [ + base bytestring data-default entropy memory + ]; + jailbreak = true; + description = "Haskell bindings to the bcrypt password hash"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bdd" = callPackage ({ mkDerivation, base, directory, HUnit, mtl, process , test-framework, test-framework-hunit, transformers @@ -38487,15 +38715,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_2_1" = callPackage + "binary_0_8_3_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.2.1"; - sha256 = "2452e32eccfe74214f689805745a11de1018f22eb19682772df23cce8816b750"; + version = "0.8.3.0"; + sha256 = "221385dde77d92f786c665ee6fce0a3beeb80e6a812b8edf9ded1b653f2ea821"; + revision = "1"; + editedCabalFile = "21a7449af6a6caa19c3b5c877c2331ccd3842ef1e9ab59c65918fbde0f6ac427"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -38777,8 +39007,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; - revision = "5"; - editedCabalFile = "76b1ba2893085236d9989cf697d01fca25c7980563c5b5c452a133aeefec2b0d"; + revision = "6"; + editedCabalFile = "6353827d50132789cb11f3d5fb6c9ec22a36f8f7a38559e6138d2212572be253"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -40895,8 +41125,8 @@ self: { }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.7.0.1"; - sha256 = "808cce7f13d11c7ea5424fa017aada13e787dca3dafe67100e303e976dc6382e"; + version = "0.7.0.2"; + sha256 = "f86b55294f029255a5329137b3f075daf495a1f7f462aed66ac273f368985d02"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types microlens microlens-th network QuickCheck scientific split text @@ -42227,19 +42457,18 @@ self: { "bond" = callPackage ({ mkDerivation, aeson, async, base, bytestring, cmdargs, derive , Diff, directory, filepath, HUnit, monad-loops, mtl, parsec - , pretty, process, QuickCheck, shakespeare, tasty, tasty-golden - , tasty-hunit, tasty-quickcheck, text + , pretty, process, QuickCheck, scientific, shakespeare, tasty + , tasty-golden, tasty-hunit, tasty-quickcheck, text }: mkDerivation { pname = "bond"; - version = "0.4.0.1"; - sha256 = "40d7f0ddcb4779d16ce3ce94bb0f0d2ea47d6d2c82f296027cd3d068be0622c8"; - revision = "1"; - editedCabalFile = "f90dcbaa3a55c1918957942c01f21a574c268730f37aff34c19a6cd04b4ccc6d"; + version = "0.4.0.2"; + sha256 = "866c6880600baa54114914e005dd994bacc33377470bd31405bda0c9f47a3825"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base bytestring filepath mtl parsec shakespeare text + aeson base bytestring filepath mtl parsec scientific shakespeare + text ]; executableHaskellDepends = [ aeson async base bytestring cmdargs directory filepath monad-loops @@ -43470,8 +43699,8 @@ self: { pname = "bumper"; version = "0.6.0.3"; sha256 = "7cfce3a38be30744a2eb322ad1e5271cd665fa62b4fe21bdf9aa00fcdbc4daa8"; - revision = "1"; - editedCabalFile = "d5083fd8bd41bdd8a9afb459891d3fbfd674b5279b30993928690410808a2af0"; + revision = "2"; + editedCabalFile = "bab175b04d4877724879ff0951490a7e0f5b98c3c99f802649e9b3db52c4db78"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44842,7 +45071,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-debian" = callPackage + "cabal-debian_4_32_2" = callPackage ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal , containers, data-default, debian, deepseq, Diff, directory , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl @@ -44874,6 +45103,41 @@ self: { homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-debian" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal + , containers, data-default, debian, deepseq, Diff, directory + , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl + , network-uri, newtype-generics, optparse-applicative, parsec + , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix + , Unixutils, utf8-string + }: + mkDerivation { + pname = "cabal-debian"; + version = "4.32.3"; + sha256 = "f75c98fdef25568683f1783e3ea8537bdea7395abf30d402d4a41b59ecb6a6b2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-wl-pprint base bifunctors Cabal containers data-default debian + deepseq Diff directory exceptions filepath hsemail HUnit lens + memoize mtl network-uri newtype-generics optparse-applicative + parsec pretty process pureMD5 regex-tdfa set-extra syb text unix + Unixutils utf8-string + ]; + executableHaskellDepends = [ + base Cabal debian lens mtl pretty Unixutils + ]; + testHaskellDepends = [ + base Cabal containers debian Diff directory filepath hsemail HUnit + lens pretty process text + ]; + doCheck = false; + homepage = "https://github.com/ddssff/cabal-debian"; + description = "Create a Debianization for a Cabal package"; + license = stdenv.lib.licenses.bsd3; }) {}; "cabal-dependency-licenses" = callPackage @@ -45425,6 +45689,44 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; + "cabal-install_1_24_0_0" = callPackage + ({ mkDerivation, array, async, base, base16-bytestring, binary + , bytestring, Cabal, containers, cryptohash-sha256, directory + , filepath, hackage-security, hashable, HTTP, mtl, network + , network-uri, pretty, process, QuickCheck, random, regex-posix + , stm, tagged, tar, tasty, tasty-hunit, tasty-quickcheck, time + , unix, zlib + }: + mkDerivation { + pname = "cabal-install"; + version = "1.24.0.0"; + sha256 = "d840ecfd0a95a96e956b57fb2f3e9c81d9fc160e1fd0ea350b0d37d169d9e87e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array async base base16-bytestring binary bytestring Cabal + containers cryptohash-sha256 directory filepath hackage-security + hashable HTTP mtl network network-uri pretty process random stm tar + time unix zlib + ]; + testHaskellDepends = [ + array async base binary bytestring Cabal containers directory + filepath hackage-security hashable HTTP mtl network network-uri + pretty process QuickCheck random regex-posix stm tagged tar tasty + tasty-hunit tasty-quickcheck time unix zlib + ]; + jailbreak = true; + postInstall = '' + mkdir $out/etc + mv bash-completion $out/etc/bash_completion.d + ''; + homepage = "http://www.haskell.org/cabal/"; + description = "The command-line interface for Cabal and Hackage"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ simons ]; + }) {}; + "cabal-install-bundle" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, old-time, pretty, process, time, unix, zlib @@ -47189,19 +47491,24 @@ self: { "casadi-bindings" = callPackage ({ mkDerivation, base, binary, casadi, casadi-bindings-core - , casadi-bindings-internal, cereal, containers, doctest, linear - , spatial-math, vector, vector-binary-instances + , casadi-bindings-internal, cereal, containers, doctest, HUnit + , linear, QuickCheck, spatial-math, test-framework + , test-framework-hunit, test-framework-quickcheck2, vector + , vector-binary-instances }: mkDerivation { pname = "casadi-bindings"; - version = "2.4.1.9"; - sha256 = "a5156237cfb2bf64bcee8b1e408ace7b4c69d69733a129ab7d0b15436dab3acd"; + version = "3.0.0.1"; + sha256 = "87ad635f973a69820c4238ba634f8c4f9ece450d994b4c31f83a8cbcf2a791cc"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal containers linear spatial-math vector vector-binary-instances ]; libraryPkgconfigDepends = [ casadi ]; - testHaskellDepends = [ base doctest ]; + testHaskellDepends = [ + base containers doctest HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 vector + ]; homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; @@ -47232,8 +47539,8 @@ self: { }: mkDerivation { pname = "casadi-bindings-core"; - version = "2.4.1.0"; - sha256 = "f35fdfc2d8d33c5455d3e7dccce341332c0620db0445f99386f1e7920e053b6c"; + version = "3.0.0.0"; + sha256 = "8cd59ae975cc1de7db78ac59f6212f2523bdf723a782a9ce0c0b47922fdf31be"; libraryHaskellDepends = [ base casadi-bindings-internal containers vector ]; @@ -47247,8 +47554,8 @@ self: { ({ mkDerivation, base, casadi, containers, vector }: mkDerivation { pname = "casadi-bindings-internal"; - version = "0.1.3.1"; - sha256 = "7170eebb779a1e0dc18dc26edd55e7136978a1e24624c9953ddc5aee60f1e3a0"; + version = "0.1.4.0"; + sha256 = "c5a48653c1f893618287adad1979ee684064daeb9b060294d65a0bea6e378976"; libraryHaskellDepends = [ base containers vector ]; libraryPkgconfigDepends = [ casadi ]; homepage = "http://github.com/ghorn/casadi-bindings"; @@ -48005,6 +48312,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "category-printf" = callPackage + ({ mkDerivation, base, bytestring, comonad, text }: + mkDerivation { + pname = "category-printf"; + version = "0.1.0.0"; + sha256 = "e954c7ab4970551a334fae1fc4ef98f56c65290b366f17cfb00df85f93bd90e2"; + libraryHaskellDepends = [ base bytestring comonad text ]; + jailbreak = true; + description = "Highbrow approach to type-safe printf format specifications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "category-traced" = callPackage ({ mkDerivation, base, categories }: mkDerivation { @@ -49024,7 +49343,7 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; - "cheapskate" = callPackage + "cheapskate_0_1_0_4" = callPackage ({ mkDerivation, aeson, base, blaze-html, bytestring, containers , data-default, http-types, mtl, syb, text, uniplate, wai , wai-extra, xss-sanitize @@ -49045,9 +49364,10 @@ self: { homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cheapskate_0_1_0_5" = callPackage + "cheapskate" = callPackage ({ mkDerivation, aeson, base, blaze-html, bytestring, containers , data-default, http-types, mtl, syb, text, uniplate, wai , wai-extra, xss-sanitize @@ -49068,7 +49388,6 @@ self: { homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cheapskate-highlight" = callPackage @@ -49859,6 +50178,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "circlehs" = callPackage + ({ mkDerivation, aeson, base, http-client, http-client-tls, mtl + , servant, servant-client, text, time, transformers + , unordered-containers + }: + mkDerivation { + pname = "circlehs"; + version = "0.0.3"; + sha256 = "aa5906bc29992227953845a4b39da6e3faf78a4520d5a85b2e0266daa0013ecf"; + libraryHaskellDepends = [ + aeson base http-client http-client-tls mtl servant servant-client + text time transformers unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/denisshevchenko/circlehs"; + description = "The CircleCI REST API for Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "cirru-parser" = callPackage ({ mkDerivation, aeson, base, text, vector }: mkDerivation { @@ -52808,7 +53146,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_5_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -52816,10 +53154,10 @@ self: { sha256 = "7c7a1f89bc4fa2f995d31a214bb7e3ad44c3570cb46b8f18e7de6011f78197d9"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; - doCheck = false; homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clock_0_6_0_1" = callPackage @@ -52837,7 +53175,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock_0_7_2" = callPackage + "clock" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -52845,10 +53183,10 @@ self: { sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; + doCheck = false; homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clocked" = callPackage @@ -53364,6 +53702,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cmph" = callPackage + ({ mkDerivation, array, base, bytestring, cmph, containers, hspec + , QuickCheck, semigroups, text + }: + mkDerivation { + pname = "cmph"; + version = "0.0.1"; + sha256 = "6308ca284f03d6b6a7cd2664bdab2e503079096a8457d95ff45ac305dfac923c"; + libraryHaskellDepends = [ array base bytestring containers ]; + librarySystemDepends = [ cmph ]; + testHaskellDepends = [ + base bytestring containers hspec QuickCheck semigroups text + ]; + testSystemDepends = [ cmph ]; + description = "low level interface to CMPH"; + license = stdenv.lib.licenses.bsd3; + }) {cmph = null;}; + "cmu" = callPackage ({ mkDerivation, array, base, containers }: mkDerivation { @@ -55300,7 +55656,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "concurrent-output" = callPackage + "concurrent-output_1_7_4" = callPackage ({ mkDerivation, ansi-terminal, async, base, directory, exceptions , process, stm, terminal-size, text, transformers, unix }: @@ -55314,6 +55670,23 @@ self: { ]; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "concurrent-output" = callPackage + ({ mkDerivation, ansi-terminal, async, base, directory, exceptions + , process, stm, terminal-size, text, transformers, unix + }: + mkDerivation { + pname = "concurrent-output"; + version = "1.7.6"; + sha256 = "ca3668dad7999dd1366582bff46ef3a50ba8ce9a775a812883094db92adac6a5"; + libraryHaskellDepends = [ + ansi-terminal async base directory exceptions process stm + terminal-size text transformers unix + ]; + description = "Ungarble output from several threads or commands"; + license = stdenv.lib.licenses.bsd2; }) {}; "concurrent-rpc" = callPackage @@ -56492,7 +56865,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-parse" = callPackage + "conduit-parse_0_1_1_0" = callPackage ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl , parsers, resourcet, tasty, tasty-hunit, text, transformers }: @@ -56510,6 +56883,27 @@ self: { homepage = "https://github.com/k0ral/conduit-parse"; description = "Parsing framework based on conduit"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-parse" = callPackage + ({ mkDerivation, base, conduit, dlist, exceptions, hlint, mtl + , parsers, resourcet, tasty, tasty-hunit, text, transformers + }: + mkDerivation { + pname = "conduit-parse"; + version = "0.1.1.1"; + sha256 = "4366a66f5980bd328730c5d44b99f67d7081e5ef76b554bc8284942bf9977f4a"; + libraryHaskellDepends = [ + base conduit dlist exceptions mtl parsers text transformers + ]; + testHaskellDepends = [ + base conduit exceptions hlint mtl parsers resourcet tasty + tasty-hunit + ]; + homepage = "https://github.com/k0ral/conduit-parse"; + description = "Parsing framework based on conduit"; + license = "unknown"; }) {}; "conduit-resumablesink" = callPackage @@ -57184,8 +57578,8 @@ self: { }: mkDerivation { pname = "consumers"; - version = "1.0"; - sha256 = "2bc2a6c50462d734a82487cad419e48835d016747cb4f3a5fdda252569b2f2b8"; + version = "1.1"; + sha256 = "0a0c574fcc036653364d75f7ec597310bf8e0952acd9de97f97febb7d7cc958c"; libraryHaskellDepends = [ base containers exceptions hpqtypes lifted-base lifted-threads log monad-control mtl stm time transformers-base @@ -57588,7 +57982,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "contravariant-extras" = callPackage + "contravariant-extras_0_3_1" = callPackage ({ mkDerivation, base, base-prelude, contravariant , template-haskell, tuple-th }: @@ -57602,6 +57996,23 @@ self: { homepage = "https://github.com/nikita-volkov/contravariant-extras"; description = "Extras for the \"contravariant\" package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "contravariant-extras" = callPackage + ({ mkDerivation, base-prelude, contravariant, template-haskell + , tuple-th + }: + mkDerivation { + pname = "contravariant-extras"; + version = "0.3.2"; + sha256 = "9fd92b6d240f9492c0474ce5261751ed9f01b6fd4292f0bbfc482e19d9012505"; + libraryHaskellDepends = [ + base-prelude contravariant template-haskell tuple-th + ]; + homepage = "https://github.com/nikita-volkov/contravariant-extras"; + description = "Extras for the \"contravariant\" package"; + license = stdenv.lib.licenses.mit; }) {}; "control-bool" = callPackage @@ -58064,7 +58475,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie" = callPackage + "cookie_0_4_1_6" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -58084,9 +58495,10 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cookie_0_4_2" = callPackage + "cookie" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , data-default-class, deepseq, HUnit, old-locale, QuickCheck, tasty , tasty-hunit, tasty-quickcheck, text, time @@ -58106,7 +58518,6 @@ self: { homepage = "http://github.com/snoyberg/cookie"; description = "HTTP cookie parsing and rendering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coordinate" = callPackage @@ -61129,7 +61540,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ctrie" = callPackage + "ctrie_0_1_0_3" = callPackage ({ mkDerivation, atomic-primops, base, containers, hashable , primitive, QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -61145,6 +61556,25 @@ self: { homepage = "https://github.com/mcschroeder/ctrie"; description = "Non-blocking concurrent map"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ctrie" = callPackage + ({ mkDerivation, atomic-primops, base, containers, hashable + , primitive, QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "ctrie"; + version = "0.1.1.0"; + sha256 = "8434b34f6c5980a8885eb0565c0d421c825a2b30574a367db2d121ed42fa5bb8"; + libraryHaskellDepends = [ atomic-primops base hashable primitive ]; + testHaskellDepends = [ + base containers hashable QuickCheck test-framework + test-framework-quickcheck2 + ]; + homepage = "https://github.com/mcschroeder/ctrie"; + description = "Non-blocking concurrent map"; + license = stdenv.lib.licenses.mit; }) {}; "cube" = callPackage @@ -61569,6 +61999,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "d3d11binding" = callPackage + ({ mkDerivation, base, c-storable-deriving, d3d11, D3DCompiler + , d3dx11, d3dxof, dxgi, dxguid, Win32 + }: + mkDerivation { + pname = "d3d11binding"; + version = "0.0.0.3"; + sha256 = "f156ed2e733df23922146d95cc438647a3685382fad7db424ebc459847668282"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base c-storable-deriving Win32 ]; + librarySystemDepends = [ + d3d11 D3DCompiler d3dx11 d3dxof dxgi dxguid + ]; + executableHaskellDepends = [ base Win32 ]; + homepage = "https://github.com/jwvg0425/d3d11binding"; + description = "A raw binding for the directX 11"; + license = stdenv.lib.licenses.mit; + }) {D3DCompiler = null; d3d11 = null; d3dx11 = null; + d3dxof = null; dxgi = null; dxguid = null;}; + "d3js" = callPackage ({ mkDerivation, base, mtl, random, text }: mkDerivation { @@ -61778,7 +62229,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl;}; - "darcs" = callPackage + "darcs_2_10_3" = callPackage ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , directory, filepath, FindBin, hashable, haskeline, html, HTTP @@ -61822,6 +62273,51 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) curl;}; + + "darcs" = callPackage + ({ mkDerivation, array, async, attoparsec, base, base16-bytestring + , binary, bytestring, cmdargs, containers, cryptohash, curl + , data-ordlist, directory, fgl, filepath, FindBin, graphviz + , hashable, haskeline, html, HTTP, HUnit, mmap, mtl, network + , network-uri, old-time, parsec, process, QuickCheck, random + , regex-applicative, regex-compat-tdfa, sandi, shelly, split, tar + , terminfo, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, transformers + , transformers-compat, unix, unix-compat, utf8-string, vector + , zip-archive, zlib + }: + mkDerivation { + pname = "darcs"; + version = "2.12.0"; + sha256 = "17318d1b49ca4b1aa00a4bffc2ab30a448e7440ce1945eed9bf382d77582308d"; + configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async attoparsec base base16-bytestring binary bytestring + containers cryptohash data-ordlist directory fgl filepath graphviz + hashable haskeline html HTTP mmap mtl network network-uri old-time + parsec process random regex-applicative regex-compat-tdfa sandi tar + terminfo text time transformers transformers-compat unix + unix-compat utf8-string vector zip-archive zlib + ]; + librarySystemDepends = [ curl ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + array base bytestring cmdargs containers directory filepath FindBin + HUnit mtl QuickCheck shelly split test-framework + test-framework-hunit test-framework-quickcheck2 text zip-archive + ]; + doCheck = false; + postInstall = '' + mkdir -p $out/etc/bash_completion.d + mv contrib/darcs_completion $out/etc/bash_completion.d/darcs + ''; + homepage = "http://darcs.net/"; + description = "a distributed, interactive, smart revision control system"; + license = "GPL"; }) {inherit (pkgs) curl;}; "darcs-benchmark" = callPackage @@ -64193,12 +64689,11 @@ self: { }: mkDerivation { pname = "ddc-base"; - version = "0.4.1.3"; - sha256 = "d5e178099df92c82edf41999f01c292b19602e9cb7d599ada4284bc5dc9e78ec"; + version = "0.4.2.1"; + sha256 = "0870bebdecf1f86a9280d1ca5addf382ad3af75c502ecebf448a64cf9402b3fc"; libraryHaskellDepends = [ base containers deepseq parsec transformers wl-pprint ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler common utilities"; license = stdenv.lib.licenses.mit; @@ -64206,20 +64701,19 @@ self: { "ddc-build" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-core - , ddc-core-eval, ddc-core-flow, ddc-core-llvm, ddc-core-salt + , ddc-core-babel, ddc-core-flow, ddc-core-llvm, ddc-core-salt , ddc-core-simpl, ddc-core-tetra, ddc-source-tetra, deepseq - , directory, filepath, mtl, process + , directory, filepath, mtl, process, time }: mkDerivation { pname = "ddc-build"; - version = "0.4.1.3"; - sha256 = "5a3a6488df40354294bea963e5432909e5bbdc6381e1a41e54e122f2526e7295"; + version = "0.4.2.1"; + sha256 = "2704257a4e47a432e0b4873297d833910f86435e7fd1add4530089849313f8ad"; libraryHaskellDepends = [ - base containers ddc-base ddc-core ddc-core-eval ddc-core-flow + base containers ddc-base ddc-core ddc-core-babel ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra - ddc-source-tetra deepseq directory filepath mtl process + ddc-source-tetra deepseq directory filepath mtl process time ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; @@ -64230,10 +64724,9 @@ self: { ({ mkDerivation, base, filepath }: mkDerivation { pname = "ddc-code"; - version = "0.4.1.3"; - sha256 = "d9bceabc172cc9ab9ca9404971edd8ee657a5ff0017d9ae5545f33a1832520d5"; + version = "0.4.2.1"; + sha256 = "2584b9433a6b37233ce3a69dbcbb5f93b6014c39a5163a0bdee3b894477326a9"; libraryHaskellDepends = [ base filepath ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler base libraries"; license = stdenv.lib.licenses.mit; @@ -64241,22 +64734,38 @@ self: { "ddc-core" = callPackage ({ mkDerivation, array, base, containers, ddc-base, deepseq - , directory, mtl, transformers + , directory, mtl, text, transformers }: mkDerivation { pname = "ddc-core"; - version = "0.4.1.3"; - sha256 = "a5b5f0c484379060149efc82f6f704abf64691cb126c687c5d1adf311f0b4595"; + version = "0.4.2.1"; + sha256 = "9d6513e58ea47b5640d579ab655d2f13d5a9070f3ea2f34719cf9b9e1b43b874"; libraryHaskellDepends = [ - array base containers ddc-base deepseq directory mtl transformers + array base containers ddc-base deepseq directory mtl text + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ddc-core-babel" = callPackage + ({ mkDerivation, base, containers, ddc-base, ddc-core + , ddc-core-tetra + }: + mkDerivation { + pname = "ddc-core-babel"; + version = "0.4.2.1"; + sha256 = "28f6950b26e2164936fa7669c770178d8b4c17094fe2533f6dcf7a4913202f06"; + libraryHaskellDepends = [ + base containers ddc-base ddc-core ddc-core-tetra + ]; + homepage = "http://disciple.ouroborus.net"; + description = "Disciplined Disciple Compiler PHP code generator"; + license = stdenv.lib.licenses.mit; + }) {}; + "ddc-core-eval" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core , deepseq, mtl, transformers @@ -64277,17 +64786,18 @@ self: { "ddc-core-flow" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-simpl, ddc-core-tetra, deepseq, limp + , limp-cbc, mtl, transformers }: mkDerivation { pname = "ddc-core-flow"; - version = "0.4.1.3"; - sha256 = "de0981453dd7b22c81e7a598f8ae3764397ba29152cda5d18a850a764b4ffeeb"; + version = "0.4.2.1"; + sha256 = "6257d14ff70d3afd4544402a6d34ddd8b0780bded8de2b03e28d0a2d5433591f"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl deepseq mtl transformers + ddc-core-simpl ddc-core-tetra deepseq limp limp-cbc mtl + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; @@ -64295,18 +64805,17 @@ self: { }) {}; "ddc-core-llvm" = callPackage - ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, mtl, transformers + ({ mkDerivation, array, base, bytestring, containers, ddc-base + , ddc-core, ddc-core-salt, ddc-core-simpl, mtl, text, transformers }: mkDerivation { pname = "ddc-core-llvm"; - version = "0.4.1.3"; - sha256 = "654d4a10027c1afa17189be38d07246be1531e2e029b2a55e11b629a805f0c38"; + version = "0.4.2.1"; + sha256 = "83780f3d1ee27ee5d754ceb2e221c262280fcdf96b28691519859deb7bc7ea61"; libraryHaskellDepends = [ - array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl mtl transformers + array base bytestring containers ddc-base ddc-core ddc-core-salt + ddc-core-simpl mtl text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; @@ -64315,16 +64824,16 @@ self: { "ddc-core-salt" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , deepseq, mtl, transformers + , deepseq, mtl, text, transformers }: mkDerivation { pname = "ddc-core-salt"; - version = "0.4.1.3"; - sha256 = "f8f8b3c30b91b3efb542e5b61a06e5dcd3e3f1de216a84af53cadc3f6ee79ea1"; + version = "0.4.2.1"; + sha256 = "2559640cfdf05ecf15eeb805826dca2c6603ee0b6b949259c4fb80cf1768689f"; libraryHaskellDepends = [ - array base containers ddc-base ddc-core deepseq mtl transformers + array base containers ddc-base ddc-core deepseq mtl text + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; @@ -64337,12 +64846,11 @@ self: { }: mkDerivation { pname = "ddc-core-simpl"; - version = "0.4.1.3"; - sha256 = "7f2dde9108f0a1cc90d447ddbc9f5f8cba207288d9fd6386afb8192828eb7978"; + version = "0.4.2.1"; + sha256 = "d8b5f4ca8b25dad680f91b0e9e6fe98c9c7594fc830be5e50dc10bb2c6889d39"; libraryHaskellDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; @@ -64351,17 +64859,17 @@ self: { "ddc-core-tetra" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-simpl, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-simpl, deepseq, mtl, pretty-show, text + , transformers }: mkDerivation { pname = "ddc-core-tetra"; - version = "0.4.1.3"; - sha256 = "6237cc475d9ef79fc1b2074c54292ed4259d2d0bbc9930069812b99c632b5d05"; + version = "0.4.2.1"; + sha256 = "3e6d8c466ac27d951ccf251fb93d6a0c0c0847a79f1b1f4361a3a002442e2761"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-simpl deepseq mtl transformers + ddc-core-simpl deepseq mtl pretty-show text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; @@ -64370,21 +64878,20 @@ self: { "ddc-driver" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-build, ddc-core - , ddc-core-eval, ddc-core-flow, ddc-core-llvm, ddc-core-salt - , ddc-core-simpl, ddc-core-tetra, ddc-interface, ddc-source-tetra - , deepseq, directory, filepath, mtl, process, transformers + , ddc-core-flow, ddc-core-llvm, ddc-core-salt, ddc-core-simpl + , ddc-core-tetra, ddc-source-tetra, deepseq, directory, filepath + , mtl, process, time, transformers }: mkDerivation { pname = "ddc-driver"; - version = "0.4.1.3"; - sha256 = "33678ecdd06c06a967fe7519d7b58c10d5b7456dc720a8454ebb00695dacdb47"; + version = "0.4.2.1"; + sha256 = "fe3427d7f5967f782ac67742345cad132c1bc9e576e9c369e3bba4fbc4c5d1cd"; libraryHaskellDepends = [ - base containers ddc-base ddc-build ddc-core ddc-core-eval - ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl - ddc-core-tetra ddc-interface ddc-source-tetra deepseq directory - filepath mtl process transformers + base containers ddc-base ddc-build ddc-core ddc-core-flow + ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra + ddc-source-tetra deepseq directory filepath mtl process time + transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; @@ -64406,17 +64913,16 @@ self: { "ddc-source-tetra" = callPackage ({ mkDerivation, array, base, containers, ddc-base, ddc-core - , ddc-core-salt, ddc-core-tetra, deepseq, mtl, transformers + , ddc-core-salt, ddc-core-tetra, deepseq, mtl, text, transformers }: mkDerivation { pname = "ddc-source-tetra"; - version = "0.4.1.3"; - sha256 = "3acbf2b2f3ab0ae269238b6e4728c929488050909bb4febbef1e3ad2b7d21421"; + version = "0.4.2.1"; + sha256 = "579506d2d7de791ba46973e358b602093fb71fad531085724fbaf9a5f90b04f4"; libraryHaskellDepends = [ array base containers ddc-base ddc-core ddc-core-salt - ddc-core-tetra deepseq mtl transformers + ddc-core-tetra deepseq mtl text transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; @@ -64425,24 +64931,22 @@ self: { "ddc-tools" = callPackage ({ mkDerivation, base, containers, ddc-base, ddc-build, ddc-code - , ddc-core, ddc-core-eval, ddc-core-flow, ddc-core-llvm - , ddc-core-salt, ddc-core-simpl, ddc-core-tetra, ddc-driver - , ddc-interface, ddc-source-tetra, directory, filepath, haskeline - , mtl, process, transformers + , ddc-core, ddc-core-flow, ddc-core-llvm, ddc-core-salt + , ddc-core-simpl, ddc-core-tetra, ddc-driver, ddc-source-tetra + , directory, filepath, haskeline, mtl, process, transformers }: mkDerivation { pname = "ddc-tools"; - version = "0.4.1.3"; - sha256 = "c2fc1cef2298a75b40d72f8a4a119f9b53d5db52ec88bc1772faac8ca582e6c1"; + version = "0.4.2.1"; + sha256 = "cc22d2bfef1d9de385da0e2eb31362c6f61e36b2784436b23d3beb24b9fa7e67"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers ddc-base ddc-build ddc-code ddc-core ddc-core-eval - ddc-core-flow ddc-core-llvm ddc-core-salt ddc-core-simpl - ddc-core-tetra ddc-driver ddc-interface ddc-source-tetra directory - filepath haskeline mtl process transformers + base containers ddc-base ddc-build ddc-code ddc-core ddc-core-flow + ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra + ddc-driver ddc-source-tetra directory filepath haskeline mtl + process transformers ]; - jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; @@ -65089,7 +65593,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dejafu" = callPackage + "dejafu_0_2_0_0" = callPackage ({ mkDerivation, atomic-primops, base, containers, deepseq , exceptions, monad-loops, mtl, random, stm, transformers }: @@ -65104,17 +65608,18 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dejafu_0_3_0_0" = callPackage + "dejafu" = callPackage ({ mkDerivation, array, atomic-primops, base, containers, deepseq , dpor, exceptions, monad-control, monad-loops, mtl, semigroups , stm, template-haskell, transformers, transformers-base }: mkDerivation { pname = "dejafu"; - version = "0.3.0.0"; - sha256 = "8df9b8ff0d09c75069c4abd06b879eb3b9ebba4e61d7429c45573cc0a108a7e1"; + version = "0.3.1.0"; + sha256 = "8761ad279a2f37200c62326cb16824587e05eb19b6ff8943f2b418a94679c9fe"; libraryHaskellDepends = [ array atomic-primops base containers deepseq dpor exceptions monad-control monad-loops mtl semigroups stm template-haskell @@ -65123,7 +65628,6 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deka" = callPackage @@ -65731,25 +66235,6 @@ self: { }) {}; "deriving-compat" = callPackage - ({ mkDerivation, base, base-compat, containers, ghc-prim, hspec - , QuickCheck, template-haskell - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.1"; - sha256 = "c33dfa865e409f3c520bda7f8c3d7b678c2497cb8857882d8741b796241da0ec"; - revision = "1"; - editedCabalFile = "364c925a70e5c49d3f98c2feb310e462c9db95b4ca3e173273144a1c715112fc"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - testHaskellDepends = [ base base-compat hspec QuickCheck ]; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "deriving-compat_0_2" = callPackage ({ mkDerivation, base, base-compat, base-orphans, containers , ghc-prim, hspec, QuickCheck, template-haskell, transformers , transformers-compat @@ -65765,11 +66250,9 @@ self: { base base-compat base-orphans hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/haskell-compat/deriving-compat"; description = "Backports of GHC deriving extensions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derp" = callPackage @@ -66449,7 +66932,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-cairo" = callPackage + "diagrams-cairo_1_3_0_5" = callPackage ({ mkDerivation, base, bytestring, cairo, colour, containers , data-default-class, diagrams-core, diagrams-lib, filepath , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango @@ -66468,6 +66951,28 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, colour, containers + , data-default-class, diagrams-core, diagrams-lib, filepath + , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango + , split, statestack, transformers, unix, vector + }: + mkDerivation { + pname = "diagrams-cairo"; + version = "1.3.0.6"; + sha256 = "463f2072feb1eaa75435bf0345bcee662448b8aa0b376d92150cd1cc247b098b"; + libraryHaskellDepends = [ + array base bytestring cairo colour containers data-default-class + diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl + optparse-applicative pango split statestack transformers unix + vector + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Cairo backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; @@ -66515,7 +67020,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-canvas" = callPackage + "diagrams-canvas_1_3_0_3" = callPackage ({ mkDerivation, base, blank-canvas, cmdargs, containers , data-default-class, diagrams-core, diagrams-lib, lens, mtl , NumInstances, optparse-applicative, statestack, text @@ -66532,6 +67037,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-canvas" = callPackage + ({ mkDerivation, base, blank-canvas, cmdargs, containers + , data-default-class, diagrams-core, diagrams-lib, lens, mtl + , NumInstances, optparse-applicative, statestack, text + }: + mkDerivation { + pname = "diagrams-canvas"; + version = "1.3.0.4"; + sha256 = "a1c5ea249029a8617db0e056bef80e5f4d95e8714882108982520286bef5c43d"; + libraryHaskellDepends = [ + base blank-canvas cmdargs containers data-default-class + diagrams-core diagrams-lib lens mtl NumInstances + optparse-applicative statestack text + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "HTML5 canvas backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-contrib_1_1_2_4" = callPackage @@ -66737,7 +67262,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-contrib" = callPackage + "diagrams-contrib_1_3_0_8" = callPackage ({ mkDerivation, base, circle-packing, colour, containers , data-default, data-default-class, diagrams-core, diagrams-lib , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom @@ -66762,6 +67287,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-contrib_1_3_0_9" = callPackage @@ -66792,6 +67318,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-contrib" = callPackage + ({ mkDerivation, base, circle-packing, colour, containers + , data-default, data-default-class, diagrams-core, diagrams-lib + , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom + , mtl, parsec, QuickCheck, random, semigroups, split + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text + }: + mkDerivation { + pname = "diagrams-contrib"; + version = "1.3.0.10"; + sha256 = "a1cc25a0aa9fefb4502b361b5193a18e34962aa1d3ccd01e5bb0426bd68779c1"; + libraryHaskellDepends = [ + base circle-packing colour containers data-default + data-default-class diagrams-core diagrams-lib diagrams-solve + force-layout lens linear MonadRandom mtl parsec random semigroups + split text + ]; + testHaskellDepends = [ + base containers diagrams-lib HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Collection of user contributions to diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "diagrams-core_1_2_0_4" = callPackage ({ mkDerivation, base, containers, dual-tree, lens, MemoTrie , monoid-extras, newtype, semigroups, vector-space @@ -66932,7 +67485,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-core" = callPackage + "diagrams-core_1_3_0_6" = callPackage ({ mkDerivation, adjunctions, base, containers, distributive , dual-tree, lens, linear, monoid-extras, mtl, semigroups , unordered-containers @@ -66948,6 +67501,25 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-core" = callPackage + ({ mkDerivation, adjunctions, base, containers, distributive + , dual-tree, lens, linear, monoid-extras, mtl, semigroups + , unordered-containers + }: + mkDerivation { + pname = "diagrams-core"; + version = "1.3.0.7"; + sha256 = "96f29afcbc833abd8ba6ad07e9fbdb13c2beb99813a1e493d491e6e6fa6aaa79"; + libraryHaskellDepends = [ + adjunctions base containers distributive dual-tree lens linear + monoid-extras mtl semigroups unordered-containers + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Core libraries for diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-graphviz" = callPackage @@ -67216,7 +67788,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-html5" = callPackage + "diagrams-html5_1_3_0_4" = callPackage ({ mkDerivation, base, cmdargs, containers, data-default-class , diagrams-core, diagrams-lib, lens, mtl, NumInstances , optparse-applicative, split, statestack, static-canvas, text @@ -67233,6 +67805,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-html5" = callPackage + ({ mkDerivation, base, cmdargs, containers, data-default-class + , diagrams-core, diagrams-lib, lens, mtl, NumInstances + , optparse-applicative, split, statestack, static-canvas, text + }: + mkDerivation { + pname = "diagrams-html5"; + version = "1.3.0.5"; + sha256 = "0b75f6280500064c94f18c86d896ad5592b8a64f011d0ff6e170cf77ec84b6e1"; + libraryHaskellDepends = [ + base cmdargs containers data-default-class diagrams-core + diagrams-lib lens mtl NumInstances optparse-applicative split + statestack static-canvas text + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "HTML5 canvas backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-lib_1_2_0_7" = callPackage @@ -67385,7 +67977,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-lib" = callPackage + "diagrams-lib_1_3_1_1" = callPackage ({ mkDerivation, active, adjunctions, array, base, colour , containers, data-default-class, diagrams-core, diagrams-solve , directory, distributive, dual-tree, exceptions, filepath @@ -67409,6 +68001,33 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-lib" = callPackage + ({ mkDerivation, active, adjunctions, array, base, colour + , containers, data-default-class, diagrams-core, diagrams-solve + , directory, distributive, dual-tree, exceptions, filepath + , fingertree, fsnotify, hashable, intervals, JuicyPixels, lens + , linear, monoid-extras, mtl, optparse-applicative, process + , semigroups, tagged, tasty, tasty-hunit, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "diagrams-lib"; + version = "1.3.1.2"; + sha256 = "e2bc2914c5715cc93361945d75d15f111d2ac4f231d7c19cc243f515d65d658d"; + libraryHaskellDepends = [ + active adjunctions array base colour containers data-default-class + diagrams-core diagrams-solve directory distributive dual-tree + exceptions filepath fingertree fsnotify hashable intervals + JuicyPixels lens linear monoid-extras mtl optparse-applicative + process semigroups tagged text transformers unordered-containers + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Embedded domain-specific language for declarative graphics"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-pandoc" = callPackage @@ -67582,7 +68201,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-postscript" = callPackage + "diagrams-postscript_1_3_0_4" = callPackage ({ mkDerivation, base, containers, data-default-class , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens , monoid-extras, mtl, semigroups, split, statestack @@ -67599,6 +68218,26 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-postscript" = callPackage + ({ mkDerivation, base, containers, data-default-class + , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens + , monoid-extras, mtl, semigroups, split, statestack + }: + mkDerivation { + pname = "diagrams-postscript"; + version = "1.3.0.5"; + sha256 = "acaa68d5b8901767c3c7cb828a15b0e73e0be2b28cbbdb9cfb76682508039b31"; + libraryHaskellDepends = [ + base containers data-default-class diagrams-core diagrams-lib dlist + filepath hashable lens monoid-extras mtl semigroups split + statestack + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Postscript backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-qrcode" = callPackage @@ -67706,7 +68345,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-rasterific" = callPackage + "diagrams-rasterific_1_3_1_5" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split @@ -67724,6 +68363,27 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-rasterific" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default-class + , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable + , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split + , unix + }: + mkDerivation { + pname = "diagrams-rasterific"; + version = "1.3.1.6"; + sha256 = "126a6d98a5ea11cccebdf3c2645db420895d4c71a60387a7d0d32e48db103600"; + libraryHaskellDepends = [ + base bytestring containers data-default-class diagrams-core + diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl + optparse-applicative Rasterific split unix + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Rasterific backend for diagrams"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-reflex" = callPackage @@ -67973,7 +68633,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "diagrams-svg_1_4" = callPackage + "diagrams-svg_1_4_0_1" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, monoid-extras, mtl, old-time @@ -67982,8 +68642,8 @@ self: { }: mkDerivation { pname = "diagrams-svg"; - version = "1.4"; - sha256 = "9845b2f999f3fb61bf36c064977d36aea9ad8c5532c2ce80e5e3a85f5f9df900"; + version = "1.4.0.1"; + sha256 = "76c8d38f44615af289d373c5abf1c6ba3ff42155f90eea73992cc708a35e6079"; libraryHaskellDepends = [ base base64-bytestring bytestring colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels lens @@ -69034,12 +69694,12 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "directory_1_2_6_2" = callPackage + "directory_1_2_6_3" = callPackage ({ mkDerivation, base, filepath, time, unix }: mkDerivation { pname = "directory"; - version = "1.2.6.2"; - sha256 = "4c860441ca249c8395a7e74743957b1064359ba3d3c30b1c18df11b9a0a413e0"; + version = "1.2.6.3"; + sha256 = "0f54e0f01f0b2ec739f849d8db6237e3bc52eb1149202b2b4e5c325659228a29"; libraryHaskellDepends = [ base filepath time unix ]; testHaskellDepends = [ base filepath time unix ]; description = "Platform-agnostic library for filesystem operations"; @@ -69292,14 +69952,14 @@ self: { "distributed-closure" = callPackage ({ mkDerivation, base, binary, bytestring, constraints, hspec - , QuickCheck, template-haskell + , QuickCheck, syb, template-haskell }: mkDerivation { pname = "distributed-closure"; - version = "0.2.1.0"; - sha256 = "345140293e28e6feaae46e2e3e275e892d72029dbd57617ba8fc1b7251ae902f"; + version = "0.3.0.0"; + sha256 = "031ca8c6d30af04c872da9143bffa5536b8ed8326c6069f6a30d94d6c5ce3d91"; libraryHaskellDepends = [ - base binary bytestring constraints template-haskell + base binary bytestring constraints syb template-haskell ]; testHaskellDepends = [ base binary hspec QuickCheck ]; homepage = "https://github.com/tweag/distributed-closure"; @@ -70451,7 +71111,6 @@ self: { patches-vector servant servant-blaze servant-docs shakespeare text time vector ]; - jailbreak = true; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; @@ -73245,7 +73904,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "effect-handlers" = callPackage + "effect-handlers_0_1_0_7" = callPackage ({ mkDerivation, base, free, hspec, hspec-discover, HUnit , kan-extensions, mtl, QuickCheck }: @@ -73260,6 +73919,24 @@ self: { homepage = "https://github.com/edofic/effect-handlers"; description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "effect-handlers" = callPackage + ({ mkDerivation, base, free, hspec, hspec-discover, HUnit + , kan-extensions, mtl, QuickCheck + }: + mkDerivation { + pname = "effect-handlers"; + version = "0.1.0.8"; + sha256 = "2439a77b6ec8db236fc2809cb91219305a7071c72bfd68de795e01b3df9aa80c"; + libraryHaskellDepends = [ base free kan-extensions mtl ]; + testHaskellDepends = [ + base hspec hspec-discover HUnit QuickCheck + ]; + homepage = "https://github.com/edofic/effect-handlers"; + description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; + license = stdenv.lib.licenses.mit; }) {}; "effect-monad" = callPackage @@ -73997,7 +74674,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "elm-bridge" = callPackage + "elm-bridge_0_2_1_1" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: @@ -74012,6 +74689,24 @@ 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" = callPackage + ({ mkDerivation, aeson, base, containers, hspec, QuickCheck + , template-haskell, text + }: + mkDerivation { + pname = "elm-bridge"; + version = "0.2.2.1"; + sha256 = "8920c626419291f8683fee026b9ea9c593996b4384ed53dd7251890ef6c55427"; + libraryHaskellDepends = [ aeson base template-haskell ]; + testHaskellDepends = [ + aeson base containers hspec QuickCheck text + ]; + homepage = "https://github.com/agrafix/elm-bridge"; + description = "Derive Elm types from Haskell types"; + license = stdenv.lib.licenses.bsd3; }) {}; "elm-build-lib" = callPackage @@ -75180,8 +75875,8 @@ self: { ({ mkDerivation, base, containers, hspec }: mkDerivation { pname = "envparse"; - version = "0.3.2"; - sha256 = "a1bed0ca630b07e634dca85a9770ea917866516bd456d8f5012435d512560156"; + version = "0.3.3"; + sha256 = "9fc908ed2d9174fbcd32bc05b2c449397720b8f23826304a72035867d83563ec"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base containers hspec ]; homepage = "https://supki.github.io/envparse"; @@ -76242,10 +76937,8 @@ self: { }: mkDerivation { pname = "ether"; - version = "0.4.0.1"; - sha256 = "2dd65384c5dd884c23cad897bc8ee343015b21bcddc04aeca3fca58c4f12716a"; - revision = "1"; - editedCabalFile = "478e2aa8efec5d299370c8f3d982280ba45f9bfb3eda97adabe7e96eb8f61a1f"; + version = "0.4.0.2"; + sha256 = "8b9dce4d444613dc46df988fa3a437297503e63ff29fd28113b35b98a8dcd953"; libraryHaskellDepends = [ base exceptions mmorph monad-control mtl template-haskell transformers transformers-base transformers-lift @@ -76535,8 +77228,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.8.0.0"; - sha256 = "5fbdbe0201c18a2c9f82799f6367c1cb4c1554554677fc181018bca289077b01"; + version = "0.8.0.1"; + sha256 = "7e89dcc7ea6bcc0843ca16d6df613fa0b873117ef1bfd818478bdb301c6311cb"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -77767,7 +78460,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "extra" = callPackage + "extra_1_4_3" = callPackage ({ mkDerivation, base, directory, filepath, process, QuickCheck , time, unix }: @@ -77784,6 +78477,26 @@ self: { homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "extra" = callPackage + ({ mkDerivation, base, directory, filepath, process, QuickCheck + , time, unix + }: + mkDerivation { + pname = "extra"; + version = "1.4.5"; + sha256 = "0fb35fe9c2c2c27305713c28d283cb4254abc792dd75ce8ef4c00fa4ee77ceb5"; + libraryHaskellDepends = [ + base directory filepath process time unix + ]; + testHaskellDepends = [ + base directory filepath QuickCheck time unix + ]; + homepage = "https://github.com/ndmitchell/extra#readme"; + description = "Extra functions I use"; + license = stdenv.lib.licenses.bsd3; }) {}; "extract-dependencies" = callPackage @@ -78102,7 +78815,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-builder" = callPackage + "fast-builder_0_0_0_3" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -78115,9 +78828,10 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-builder_0_0_0_4" = callPackage + "fast-builder" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -78130,7 +78844,6 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-digits" = callPackage @@ -78251,7 +78964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-logger" = callPackage + "fast-logger_2_4_3" = callPackage ({ mkDerivation, array, auto-update, base, bytestring , bytestring-builder, directory, filepath, hspec, text }: @@ -78266,6 +78979,7 @@ self: { testHaskellDepends = [ base bytestring directory hspec ]; description = "A fast logging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-logger_2_4_5" = callPackage @@ -78287,6 +79001,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "fast-logger" = callPackage + ({ mkDerivation, array, auto-update, base, bytestring + , bytestring-builder, directory, easy-file, filepath, hspec, text + , unix, unix-time + }: + mkDerivation { + pname = "fast-logger"; + version = "2.4.6"; + sha256 = "d45640acb40bf9b6f81cbe63e3587b6e59d9ec24a15401e52bdc7969b6f2cfd1"; + libraryHaskellDepends = [ + array auto-update base bytestring bytestring-builder directory + easy-file filepath text unix unix-time + ]; + testHaskellDepends = [ base bytestring directory hspec ]; + description = "A fast logging system"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "fast-math" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -78327,12 +79059,16 @@ self: { }) {}; "fast-tagsoup" = callPackage - ({ mkDerivation, base, bytestring, tagsoup, text, text-icu }: + ({ mkDerivation, base, bytestring, containers, tagsoup, text + , text-icu + }: mkDerivation { pname = "fast-tagsoup"; - version = "1.0.7"; - sha256 = "a885e4cb187c1b134bc4410bac8016f118090ee8220f941d051f01d95a563321"; - libraryHaskellDepends = [ base bytestring tagsoup text text-icu ]; + version = "1.0.9"; + sha256 = "20c9895e01e522215bf0b36df084dc78b53b1e9a05d4be220c4816a6d1260d9b"; + libraryHaskellDepends = [ + base bytestring containers tagsoup text text-icu + ]; homepage = "https://github.com/vshabanov/fast-tagsoup"; description = "Fast parser for tagsoup package"; license = stdenv.lib.licenses.bsd3; @@ -78834,8 +79570,8 @@ self: { pname = "fay-builder"; version = "0.2.0.5"; sha256 = "116dea6dc304834be81d70faec7e3de1fd867ebbda0d02d3c1c6a0f96d2b31a2"; - revision = "1"; - editedCabalFile = "09fb1a4f71c11547dadf8859e302ede4d65aed7437ed1da16376811724a6b1ef"; + revision = "2"; + editedCabalFile = "846d778c1b5f3feeb549d013338a08a746acb114d7c07c855b91032c4675d32b"; libraryHaskellDepends = [ base Cabal data-default directory fay filepath safe split text ]; @@ -80386,7 +81122,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "file-embed" = callPackage + "file-embed_0_0_9_1" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , template-haskell }: @@ -80401,9 +81137,10 @@ self: { homepage = "https://github.com/snoyberg/file-embed"; description = "Use Template Haskell to embed file contents directly"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "file-embed_0_0_10" = callPackage + "file-embed" = callPackage ({ mkDerivation, base, bytestring, directory, filepath , template-haskell }: @@ -80418,7 +81155,6 @@ self: { homepage = "https://github.com/snoyberg/file-embed"; description = "Use Template Haskell to embed file contents directly"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "file-location_0_4_5_3" = callPackage @@ -82265,14 +83001,17 @@ self: { }) {}; "fold-debounce" = callPackage - ({ mkDerivation, base, data-default, hspec, stm, stm-delay, time }: + ({ mkDerivation, base, data-default-class, hspec, stm, stm-delay + , time + }: mkDerivation { pname = "fold-debounce"; - version = "0.2.0.0"; - sha256 = "ab4af7e815cfa2345cdf17c0e765da575f66c0b9b978c8234d620fcf933800db"; - libraryHaskellDepends = [ base data-default stm stm-delay time ]; + version = "0.2.0.1"; + sha256 = "0a59cd7d26dad8b5d87d6acd073152131642942736c1fdcb4a96ad0444037e56"; + libraryHaskellDepends = [ + base data-default-class stm stm-delay time + ]; testHaskellDepends = [ base hspec stm time ]; - jailbreak = true; homepage = "https://github.com/debug-ito/fold-debounce"; description = "Fold multiple events that happen in a given period of time"; license = stdenv.lib.licenses.bsd3; @@ -82285,8 +83024,8 @@ self: { }: mkDerivation { pname = "fold-debounce-conduit"; - version = "0.1.0.0"; - sha256 = "b348a7e2e83e6a98cd95fbc7a967f5a80e3772d6fa0377b8d53acef509e1be34"; + version = "0.1.0.1"; + sha256 = "d8e0a80f0172ab80a842253aeb856ec327832e7f7f91d221ecf2ce66d265dc10"; libraryHaskellDepends = [ base conduit fold-debounce resourcet stm transformers transformers-base @@ -82294,7 +83033,6 @@ self: { testHaskellDepends = [ base conduit hspec resourcet stm transformers ]; - jailbreak = true; homepage = "https://github.com/debug-ito/fold-debounce-conduit"; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = stdenv.lib.licenses.bsd3; @@ -82810,7 +83548,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "force-layout" = callPackage + "force-layout_0_4_0_3" = callPackage ({ mkDerivation, base, containers, data-default-class, lens, linear }: mkDerivation { @@ -82822,6 +83560,21 @@ self: { ]; description = "Simple force-directed layout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "force-layout" = callPackage + ({ mkDerivation, base, containers, data-default-class, lens, linear + }: + mkDerivation { + pname = "force-layout"; + version = "0.4.0.4"; + sha256 = "dc6183723dc02b0f03346386a6eff97b7c3334c373a14b1f47ebb84a31ead8f4"; + libraryHaskellDepends = [ + base containers data-default-class lens linear + ]; + description = "Simple force-directed layout"; + license = stdenv.lib.licenses.bsd3; }) {}; "fordo" = callPackage @@ -83542,6 +84295,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "freddy" = callPackage + ({ mkDerivation, amqp, async, base, broadcast-chan, bytestring + , data-default, hspec, random, text, uuid + }: + mkDerivation { + pname = "freddy"; + version = "0.1.0.0"; + sha256 = "5513ee3231f1b5cb407d13dd8ea153f2737b25f0270eb12b304ffee56cda275a"; + libraryHaskellDepends = [ + amqp base broadcast-chan bytestring data-default random text uuid + ]; + testHaskellDepends = [ + amqp async base broadcast-chan bytestring data-default hspec random + text uuid + ]; + jailbreak = true; + homepage = "https://github.com/salemove/freddy-hs"; + description = "RabbitMQ Messaging API supporting request-response"; + license = stdenv.lib.licenses.mit; + }) {}; + "free_4_9" = callPackage ({ mkDerivation, base, bifunctors, comonad, distributive, mtl , prelude-extras, profunctors, semigroupoids, semigroups @@ -86198,7 +86972,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "geniplate-mirror" = callPackage + "geniplate-mirror_0_7_2" = callPackage ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "geniplate-mirror"; @@ -86208,9 +86982,10 @@ self: { homepage = "https://github.com/danr/geniplate"; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "geniplate-mirror_0_7_4" = callPackage + "geniplate-mirror" = callPackage ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "geniplate-mirror"; @@ -86220,7 +86995,6 @@ self: { homepage = "https://github.com/danr/geniplate"; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniserver" = callPackage @@ -87698,8 +88472,8 @@ self: { }: mkDerivation { pname = "ghcid"; - version = "0.6.1"; - sha256 = "f3a69db6c66670aefa9c38ec8f30cec1e5a5ac3405b661fcc320a613518b4a4c"; + version = "0.6.2"; + sha256 = "2977c1f260d3552e321ac120b37e25537f81f127d2aa579310a9f4232d3fd690"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -88541,31 +89315,6 @@ self: { }) {}; "giphy-api" = callPackage - ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers - , directory, either, hspec, lens, microlens, microlens-th, mtl - , network-uri, servant, servant-client, text - }: - mkDerivation { - pname = "giphy-api"; - version = "0.2.5.0"; - sha256 = "63630c590dbdf0d2681e4d15121439f0b5762b284c77411148edf7155df8881b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers either microlens microlens-th mtl network-uri - servant servant-client text - ]; - executableHaskellDepends = [ base network-uri text ]; - testHaskellDepends = [ - aeson base basic-prelude bytestring containers directory hspec lens - network-uri text - ]; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "giphy-api_0_4_0_0" = callPackage ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers , directory, hspec, http-api-data, http-client, http-client-tls , lens, microlens, microlens-th, mtl, network-uri, servant @@ -88587,11 +89336,9 @@ self: { aeson base basic-prelude bytestring containers directory hspec lens network-uri text ]; - jailbreak = true; homepage = "http://github.com/passy/giphy-api#readme"; description = "Giphy HTTP API wrapper and CLI search tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gist" = callPackage @@ -88859,8 +89606,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "6.20160418"; - sha256 = "9d13586cc38d78bcd94c1f3a245d5283e67f43b0ea88033c40d54e78f6544fa2"; + version = "6.20160419"; + sha256 = "1452a55809ba7367847fc4a77f2d8a5365af92e130d5ca460bf0880a26a6fb8e"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -91000,6 +91747,7 @@ self: { mwc-random-monad statistics vector ]; executableHaskellDepends = [ base goal-core goal-geometry vector ]; + jailbreak = true; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -92320,6 +93068,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring either servant servant-client text ]; + jailbreak = true; description = "Google Translate API bindings"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93469,7 +94218,6 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://bitbucket.org/janmasrovira/am3-project/overview"; description = "GRASP implementation for the AMMM project"; license = stdenv.lib.licenses.bsd3; @@ -97141,6 +97889,7 @@ self: { attoparsec base bytestring hadoop-rpc tasty tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/jystic/hadoop-tools"; description = "Fast command line tools for working with Hadoop"; license = stdenv.lib.licenses.asl20; @@ -97459,7 +98208,7 @@ self: { , 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 + , text, time, utillinux }: mkDerivation { pname = "hakyll"; @@ -97486,12 +98235,13 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + testToolDepends = [ utillinux ]; jailbreak = true; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_8_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97501,7 +98251,7 @@ self: { , 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 + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97527,13 +98277,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_8_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97543,7 +98294,7 @@ self: { , 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 + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97569,13 +98320,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_6_9_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97585,7 +98337,7 @@ self: { , 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 + , text, time, time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97611,13 +98363,14 @@ self: { system-filepath tagsoup test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_2_3" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97627,7 +98380,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97653,13 +98406,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_3_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97669,7 +98423,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97695,13 +98449,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97711,7 +98466,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97737,13 +98492,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_4_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97753,7 +98509,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97779,13 +98535,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_5_0" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97795,7 +98552,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97821,13 +98578,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll_4_7_5_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring @@ -97837,7 +98595,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97863,15 +98621,16 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; - "hakyll" = callPackage + "hakyll_4_7_5_2" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -97879,7 +98638,7 @@ self: { , 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 + , time-locale-compat, utillinux }: mkDerivation { pname = "hakyll"; @@ -97905,12 +98664,14 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + testToolDepends = [ utillinux ]; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; - }) {}; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) utillinux;}; - "hakyll_4_8_0_1" = callPackage + "hakyll" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -97918,12 +98679,12 @@ self: { , process, QuickCheck, random, regex-base, regex-tdfa, resourcet , snap-core, snap-server, system-filepath, tagsoup, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time - , time-locale-compat, unordered-containers, vector, yaml + , time-locale-compat, unordered-containers, utillinux, vector, yaml }: mkDerivation { pname = "hakyll"; - version = "4.8.0.1"; - sha256 = "c5e860cd6cf8bc525e032da106fbe44667bc5bdc5d3023ca77cc32b3c6bc41d5"; + version = "4.8.3.0"; + sha256 = "d01a2ec0fbc3efffb6e7fcc2971842b6c6bd893327324cada0e345d3a5e504ef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -97944,11 +98705,11 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat unordered-containers vector yaml ]; + testToolDepends = [ utillinux ]; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {inherit (pkgs) utillinux;}; "hakyll-R" = callPackage ({ mkDerivation, base, directory, filepath, hakyll, pandoc, process @@ -98097,6 +98858,7 @@ self: { libraryHaskellDepends = [ base filestore hakyll time time-locale-compat ]; + jailbreak = true; homepage = "https://gitlab.com/aergus/hakyll-filestore"; description = "FileStore utilities for Hakyll"; license = stdenv.lib.licenses.publicDomain; @@ -101047,6 +101809,7 @@ self: { base either network-uri QuickCheck servant servant-client servant-mock servant-server split transformers warp ]; + jailbreak = true; homepage = "https://github.com/soundcloud/haskell-kubernetes"; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = stdenv.lib.licenses.mit; @@ -103432,8 +104195,8 @@ self: { }: mkDerivation { pname = "hasql"; - version = "0.19.10"; - sha256 = "e656386350fdba654177ac5efb96db00a7dd5e1675c710bf65bd75b0ed64b5dc"; + version = "0.19.11"; + sha256 = "48b12698e6168f176fa583317cb3f058e99f604ceda5036e891bc496bf4158e4"; libraryHaskellDepends = [ aeson attoparsec base base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras @@ -104155,7 +104918,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hasty-hamiltonian" = callPackage + "hasty-hamiltonian_1_1_2" = callPackage ({ mkDerivation, ad, base, lens, mcmc-types, mwc-probability, pipes , primitive, transformers }: @@ -104170,6 +104933,24 @@ self: { homepage = "http://jtobin.github.com/hasty-hamiltonian"; description = "Speedy traversal through parameter space"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hasty-hamiltonian" = callPackage + ({ mkDerivation, ad, base, lens, mcmc-types, mwc-probability, pipes + , primitive, transformers + }: + mkDerivation { + pname = "hasty-hamiltonian"; + version = "1.1.3"; + sha256 = "15fe3075dc4cf9a5ea9875cb15da469ee414223696c0e9eb3163a44d23c38463"; + libraryHaskellDepends = [ + base lens mcmc-types mwc-probability pipes primitive transformers + ]; + testHaskellDepends = [ ad base mwc-probability ]; + homepage = "http://github.com/jtobin/hasty-hamiltonian"; + description = "Speedy traversal through parameter space"; + license = stdenv.lib.licenses.mit; }) {}; "hat" = callPackage @@ -105828,15 +106609,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_8_0" = callPackage + "hedis_0_8_2" = callPackage ({ mkDerivation, base, bytestring, bytestring-lexing, deepseq , HUnit, mtl, network, resource-pool, scanner, slave-thread , test-framework, test-framework-hunit, text, time, vector }: mkDerivation { pname = "hedis"; - version = "0.8.0"; - sha256 = "8bde5dcda10b768bdc55a0e0c529f2dacd06f02f88839b986cf75ae426c4811b"; + version = "0.8.2"; + sha256 = "4d577fcb4e1457455210ee58d0aef3f02069d2d4d055108a0391899544a254a9"; libraryHaskellDepends = [ base bytestring bytestring-lexing deepseq mtl network resource-pool scanner text time vector @@ -106082,7 +106863,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "heist" = callPackage + "heist_0_14_1_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , bytestring, containers, directory, directory-tree, dlist, either , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl @@ -106102,6 +106883,29 @@ self: { homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "heist" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , bytestring, containers, directory, directory-tree, dlist, either + , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl + , process, random, text, time, transformers, unordered-containers + , vector, xmlhtml + }: + mkDerivation { + pname = "heist"; + version = "0.14.1.4"; + sha256 = "debf008e68310d7e494560ebf7226693e5bc6820be39b6dae91f965805cf5fc9"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html bytestring + containers directory directory-tree dlist either filepath hashable + map-syntax MonadCatchIO-transformers mtl process random text time + transformers unordered-containers vector xmlhtml + ]; + homepage = "http://snapframework.com/"; + description = "An Haskell template system supporting both HTML5 and XML"; + license = stdenv.lib.licenses.bsd3; }) {}; "heist-aeson" = callPackage @@ -106573,13 +107377,15 @@ self: { }) {}; "heredocs" = callPackage - ({ mkDerivation, base, doctest, parsec, template-haskell }: + ({ mkDerivation, base, doctest, parsec, template-haskell, text }: mkDerivation { pname = "heredocs"; - version = "0.1.1.0"; - sha256 = "fb6779b1eba4fade43b1c25d0289152390d37027e9e79f072331e175dbee7fa6"; - libraryHaskellDepends = [ base doctest parsec template-haskell ]; - testHaskellDepends = [ base doctest ]; + version = "0.1.2.1"; + sha256 = "9eb58206ced97594e688a8905040e9aff81047a38156f38719b62718cf3a6570"; + libraryHaskellDepends = [ + base doctest parsec template-haskell text + ]; + testHaskellDepends = [ base doctest text ]; homepage = "http://github.com/cutsea110/heredoc.git"; description = "heredocument"; license = stdenv.lib.licenses.bsd3; @@ -107881,8 +108687,8 @@ self: { }: mkDerivation { pname = "highlight-versions"; - version = "0.1.3.5"; - sha256 = "475a6c4fd63a684ccd681d613c47567f08688209c6c80a06ad027bfa7f9b675a"; + version = "0.1.3.6"; + sha256 = "7b752972d159fd1ef0458b310830ada06db3190716e44053110b3a46584fb3fd"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -108471,6 +109277,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hinotify-bytestring" = callPackage + ({ mkDerivation, base, bytestring, containers, directory + , posix-paths, unix, utf8-string + }: + mkDerivation { + pname = "hinotify-bytestring"; + version = "0.3.8.1"; + sha256 = "f67eacc194a427d48358fc63c5a896fdadbe996f15e55f423f6a9148204eac7b"; + libraryHaskellDepends = [ + base bytestring containers directory unix + ]; + testHaskellDepends = [ + base bytestring directory posix-paths unix utf8-string + ]; + homepage = "https://github.com/hasufell/hinotify-bytestring.git"; + description = "Haskell binding to inotify, using ByteString filepaths"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hinquire" = callPackage ({ mkDerivation, base, bifunctors, QuickCheck, test-framework , test-framework-quickcheck2, test-framework-th @@ -108725,7 +109550,6 @@ self: { network-uri servant servant-client split string-conversions text time ]; - jailbreak = true; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -109251,6 +110075,7 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; @@ -109280,13 +110105,14 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hjsmin" = callPackage + "hjsmin_0_1_5_3" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers , HUnit, language-javascript, optparse-applicative, QuickCheck , test-framework, test-framework-hunit, text @@ -109309,12 +110135,14 @@ self: { language-javascript QuickCheck test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hjsmin_0_2_0_1" = callPackage + "hjsmin" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, containers , language-javascript, optparse-applicative, text }: @@ -109331,11 +110159,9 @@ self: { base blaze-builder bytestring containers language-javascript optparse-applicative text ]; - jailbreak = true; homepage = "http://github.com/erikd/hjsmin"; description = "Haskell implementation of a javascript minifier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjson" = callPackage @@ -109432,6 +110258,7 @@ self: { QuickCheck tasty tasty-hunit tasty-quickcheck text unordered-containers vector wai-app-static warp ]; + jailbreak = true; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; @@ -110764,12 +111591,12 @@ self: { ({ mkDerivation, base, hmatrix, liblapack, transformers }: mkDerivation { pname = "hmatrix-banded"; - version = "0.0"; - sha256 = "52a90b2094eacfbeb87befaa6a2ae44924dc175c9245b61574967a6ae1a84f16"; + version = "0.0.0.2"; + sha256 = "cb3b825d4eef1813bd1bdf43199c200d254f0d7ad78ff1ad6b0ce3752ed33b32"; libraryHaskellDepends = [ base hmatrix transformers ]; librarySystemDepends = [ liblapack ]; jailbreak = true; - homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; + homepage = "http://hub.darcs.net/thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -111643,15 +112470,14 @@ self: { "hobbits" = callPackage ({ mkDerivation, base, deepseq, haskell-src-exts, haskell-src-meta , mtl, syb, tagged, template-haskell, th-expand-syns, transformers - , type-equality }: mkDerivation { pname = "hobbits"; - version = "1.1.1"; - sha256 = "1aa60e29544face622e4c049f467833f23a54caa69ba23e8f047e34bb744c660"; + version = "1.2"; + sha256 = "f778c6919bb011b565005a540f3aba6c9d4a08be530333939612358225595d50"; libraryHaskellDepends = [ base deepseq haskell-src-exts haskell-src-meta mtl syb tagged - template-haskell th-expand-syns transformers type-equality + template-haskell th-expand-syns transformers ]; jailbreak = true; description = "A library for canonically representing terms with binding"; @@ -113381,8 +114207,8 @@ self: { }: mkDerivation { pname = "hpack"; - version = "0.12.0"; - sha256 = "564bdf6870efa6437d51d2bf05a09eafe61cb3bae33cc9c43a02fa094c868748"; + version = "0.13.0"; + sha256 = "1e374c9c6ea4784371e91353bc2204d9724a0f5864916bcba355d882cde44830"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -118491,8 +119317,8 @@ self: { ({ mkDerivation, base, seccomp, tasty, tasty-hunit, unix }: mkDerivation { pname = "hsseccomp"; - version = "0.1.0.2"; - sha256 = "fce6e18b1a87e1f62f3aad709d8a41fa4b34646cc32ec973ed279914c794dc0b"; + version = "0.2.0.1"; + sha256 = "b138481c5b6ca765e06cfdad0d6efbb40c3241f09569fbd9645ca19b0bdd372f"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ seccomp ]; testHaskellDepends = [ base tasty tasty-hunit unix ]; @@ -118532,28 +119358,46 @@ self: { }) {}; "hssqlppp" = callPackage - ({ mkDerivation, base, containers, groom, HUnit, mtl, parsec - , pretty, syb, template-haskell, test-framework - , test-framework-hunit, transformers, uniplate + ({ mkDerivation, base, containers, haskell-src-exts, mtl, parsec + , pretty, pretty-show, syb, tasty, tasty-hunit, template-haskell + , text, transformers, uniplate }: mkDerivation { pname = "hssqlppp"; - version = "0.4.2"; - sha256 = "f4735a94367c044eeeab7d4ee07c0c126142046a1576843c1545b1b2f0677520"; + version = "0.6.0"; + sha256 = "7052d03cfb1251f806999fee3566dc7ecc838fe1db1025ed1ac2de34774e0cbc"; libraryHaskellDepends = [ - base containers mtl parsec pretty syb template-haskell transformers + base containers mtl parsec pretty pretty-show syb text transformers uniplate ]; testHaskellDepends = [ - base containers groom HUnit mtl parsec pretty syb template-haskell - test-framework test-framework-hunit transformers uniplate + base containers haskell-src-exts mtl parsec pretty pretty-show syb + tasty tasty-hunit template-haskell text transformers uniplate ]; - jailbreak = true; homepage = "http://jakewheat.github.com/hssqlppp/"; description = "SQL parser and type checker"; license = stdenv.lib.licenses.bsd3; }) {}; + "hssqlppp-th" = callPackage + ({ mkDerivation, base, hssqlppp, syb, tasty, tasty-hunit + , template-haskell, text + }: + mkDerivation { + pname = "hssqlppp-th"; + version = "0.6.0"; + sha256 = "546e917a7e737a8e7dc78d19c15d85aae8ec98857357706e74f19f4347635785"; + libraryHaskellDepends = [ + base hssqlppp syb template-haskell text + ]; + testHaskellDepends = [ + base hssqlppp syb tasty tasty-hunit template-haskell text + ]; + homepage = "http://jakewheat.github.com/hssqlppp/"; + description = "hssqlppp extras which need template-haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hstatistics_0_2_5_2" = callPackage ({ mkDerivation, array, base, hmatrix, hmatrix-gsl-stats, random , vector @@ -120859,6 +121703,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-dispatch" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive, hspec + , http-client, http-client-tls, http-types + }: + mkDerivation { + pname = "http-dispatch"; + version = "0.3.0.0"; + sha256 = "db60bbb10034b944c940004db750de89a6baaa6a765606e20475af7650aa0f8a"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive http-client http-client-tls + http-types + ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/owainlewis/http-dispatch#readme"; + description = "High level HTTP client for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "http-encodings" = callPackage ({ mkDerivation, base, bytestring, HTTP, iconv, mime, mtl, parsec , text, utf8-string, zlib @@ -121873,13 +122735,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hunit-dejafu" = callPackage + "hunit-dejafu_0_2_0_0" = callPackage ({ mkDerivation, base, dejafu, HUnit }: mkDerivation { pname = "hunit-dejafu"; version = "0.2.0.0"; sha256 = "c81eb0cd3e6c53509c056b0f37dcdb5f7fac6e7766abf36fb68c44e3dd997db0"; libraryHaskellDepends = [ base dejafu HUnit ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the HUnit test framework"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hunit-dejafu" = callPackage + ({ mkDerivation, base, dejafu, exceptions, HUnit }: + mkDerivation { + pname = "hunit-dejafu"; + version = "0.3.0.0"; + sha256 = "583e2d26610be4cc53c1a5b8c739e06537b86f94a9f24316274aab331deec2c9"; + libraryHaskellDepends = [ base dejafu exceptions HUnit ]; homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the HUnit test framework"; license = stdenv.lib.licenses.mit; @@ -122186,35 +123062,6 @@ self: { }) {}; "hw-bits" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-prim, lens, mmap - , mono-traversable, parsec, QuickCheck, random, resourcet, safe - , text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-bits"; - version = "0.0.0.5"; - sha256 = "a65a46718827efefcee0126b047eca6cc77561aebda3fb6e94d354b94f1d87a8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim hw-prim - lens mmap mono-traversable parsec QuickCheck random resourcet safe - text vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion mmap resourcet vector - ]; - testHaskellDepends = [ - attoparsec base bytestring conduit hspec mmap parsec QuickCheck - resourcet transformers vector - ]; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-bits_0_0_0_6" = callPackage ({ mkDerivation, base, bytestring, criterion, hspec, hw-prim, mmap , parsec, QuickCheck, resourcet, vector }: @@ -122232,7 +123079,6 @@ self: { homepage = "http://github.com/haskell-works/hw-bits#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-conduit" = callPackage @@ -122256,31 +123102,6 @@ self: { }) {}; "hw-diagnostics" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable - , parsec, QuickCheck, random, resourcet, safe, text, vector, word8 - }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.1"; - sha256 = "109d2f419e8d8ebb4580863f84528c2d2b229a210d756f7ced7383136fed18b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim lens mmap - mono-traversable parsec QuickCheck random resourcet safe text - vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion mmap resourcet vector - ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-diagnostics_0_0_0_2" = callPackage ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "hw-diagnostics"; @@ -122294,35 +123115,32 @@ self: { homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, hspec, QuickCheck, random - , vector + "hw-parser" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hw-prim + , mono-traversable, text }: mkDerivation { - pname = "hw-prim"; - version = "0.0.0.7"; - sha256 = "ea9c3334e62e4fdaeca3db78b877621750529fa23323b1a7bee8976c6b5ba4f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring random vector ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; + pname = "hw-parser"; + version = "0.0.0.1"; + sha256 = "9b08d5bc3441cfcaa91ae613655c47dfb4e988210245df7cada3dbc2a5128025"; + libraryHaskellDepends = [ + attoparsec base bytestring hw-prim mono-traversable text + ]; + homepage = "http://github.com/haskell-works/hw-parser#readme"; + description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; }) {}; - "hw-prim_0_0_0_8" = callPackage + "hw-prim" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck, random , vector }: mkDerivation { pname = "hw-prim"; - version = "0.0.0.8"; - sha256 = "47c84f878d396475590223529fd9d70b277e8345a1f1b2c0d7956d968a5b14b1"; + version = "0.0.0.10"; + sha256 = "641a1da0488664d12438f396f08577e02f9ca43b53a6f00e52085f63a5ab776e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring random vector ]; @@ -122331,7 +123149,6 @@ self: { homepage = "http://github.com/haskell-works/hw-prim#readme"; description = "Primitive functions and data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-rankselect" = callPackage @@ -122354,50 +123171,20 @@ self: { }) {}; "hw-succinct" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , criterion, deepseq, ghc-prim, hspec, hw-bits, hw-prim, lens, mmap - , mono-traversable, parsec, QuickCheck, random, resourcet, safe - , text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.0.0.7"; - sha256 = "7bca3413676c9ada97feafd12ed174fc4be570a1b8eb00a258f2a240e6adeee1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array attoparsec base bytestring conduit deepseq ghc-prim hw-bits - hw-prim lens mmap mono-traversable parsec QuickCheck random - resourcet safe text vector word8 - ]; - executableHaskellDepends = [ - base bytestring conduit criterion hw-bits hw-prim mmap resourcet - vector - ]; - testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits hw-prim mmap - parsec QuickCheck resourcet transformers vector - ]; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-succinct_0_0_0_8" = callPackage ({ mkDerivation, attoparsec, base, bytestring, conduit, criterion - , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-prim + , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-parser, hw-prim , hw-rankselect, mmap, mono-traversable, parsec, QuickCheck , resourcet, text, transformers, vector }: mkDerivation { pname = "hw-succinct"; - version = "0.0.0.8"; - sha256 = "70b1e52059a18d9ce9f6b5735f4497bf341cce4ec9265858584a4eea0d7215a2"; + version = "0.0.0.12"; + sha256 = "2005251655ba822fd8eabbb81247126014e5aea55e68dadd1547c8460a448310"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base bytestring conduit hw-bits hw-conduit hw-prim - hw-rankselect mono-traversable text vector + attoparsec base bytestring conduit hw-bits hw-conduit hw-parser + hw-prim hw-rankselect mono-traversable text vector ]; executableHaskellDepends = [ base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics @@ -122410,7 +123197,6 @@ self: { homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwall-auth-iitk" = callPackage @@ -123448,16 +124234,19 @@ self: { }) {}; "hylogen" = callPackage - ({ mkDerivation, base, bytestring, filepath, fsnotify, http-types - , process, text, vector-space, wai, warp, websockets + ({ mkDerivation, base, bytestring, containers, filepath, fsnotify + , hashable, http-types, mtl, process, text, vector-space, wai, warp + , websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.0.10"; - sha256 = "a8e59008ec5d4293ae14b52b900a8182f02640e6e5724d56f856e94cd1e5d40a"; + version = "0.1.0.12"; + sha256 = "b8906eb87088336087918208b9735259b7b5116565461ecd0333f09d46f420a9"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base vector-space ]; + libraryHaskellDepends = [ + base containers hashable mtl vector-space + ]; executableHaskellDepends = [ base bytestring filepath fsnotify http-types process text wai warp websockets @@ -124774,16 +125563,17 @@ self: { ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint , async, base, base64-bytestring, binary, blaze-html, blaze-markup , bytestring, cheapskate, containers, deepseq, directory, filepath - , fingertree, fsnotify, gmp, haskeline, libffi, mtl, network - , optparse-applicative, parsers, pretty, process, safe, split - , terminal-size, text, time, transformers, transformers-compat - , trifecta, uniplate, unix, unordered-containers, utf8-string - , vector, vector-binary-instances, zip-archive + , fingertree, fsnotify, gmp, haskeline, ieee754, libffi, mtl + , network, optparse-applicative, parsers, pretty, process, safe + , split, terminal-size, text, time, transformers + , transformers-compat, trifecta, uniplate, unix + , unordered-containers, utf8-string, vector + , vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "0.11"; - sha256 = "e0ea4df41f63f9d4292fe2ae9d3031cbc511a96c80e43240df16374335261a2a"; + version = "0.11.1"; + sha256 = "51df8882aa778000833127a64b319aba07f712fe6e41033af401fbf99c08b964"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -124791,10 +125581,11 @@ self: { annotated-wl-pprint ansi-terminal ansi-wl-pprint async base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate containers deepseq directory filepath fingertree - fsnotify haskeline libffi mtl network optparse-applicative parsers - pretty process safe split terminal-size text time transformers - transformers-compat trifecta uniplate unix unordered-containers - utf8-string vector vector-binary-instances zip-archive + fsnotify haskeline ieee754 libffi mtl network optparse-applicative + parsers pretty process safe split terminal-size text time + transformers transformers-compat trifecta uniplate unix + unordered-containers utf8-string vector vector-binary-instances + zip-archive ]; librarySystemDepends = [ gmp ]; executableHaskellDepends = [ @@ -124804,6 +125595,7 @@ self: { base containers directory filepath haskeline process time transformers ]; + doCheck = false; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -125715,31 +126507,38 @@ self: { }) {}; "imm" = callPackage - ({ mkDerivation, async, base, bytestring, case-insensitive, cond - , data-default, directory, dyre, feed, filepath, hslogger - , http-conduit, http-types, lens, mime-mail, monad-control, mtl - , network, network-uri, old-locale, opml, random, resourcet, text - , text-icu, time, timerep, tls, transformers, transformers-base - , utf8-string, xdg-basedir, xml + ({ mkDerivation, aeson, ansi-wl-pprint, atom-conduit, base + , bytestring, case-insensitive, chunked-data, comonad, compdata + , conduit, conduit-combinators, conduit-parse, connection + , containers, directory, dyre, exceptions, fast-logger, filepath + , free, hashable, HaskellNet, HaskellNet-SSL, http-client + , http-client-tls, http-types, mime-mail, mono-traversable + , monoid-subclasses, network, opml-conduit, optparse-applicative + , rainbow, rainbox, rss-conduit, text, time, timerep, tls + , transformers, uri-bytestring, xml, xml-conduit }: mkDerivation { pname = "imm"; - version = "0.6.0.3"; - sha256 = "b488b4a0011abf516b4d71eeea0c5cdbd2a4ebb561c2ec200cb90bd9cd58183a"; - revision = "1"; - editedCabalFile = "c14d5caa0066c05d15589dfbb663c5397bcb6d12ab4477de1d7572e3a16b132d"; + version = "1.0.0.0"; + sha256 = "05bca52253f0f6ea4fc52e07f5920012e75f20cd5e3127c7ffac5647a1512af5"; + revision = "3"; + editedCabalFile = "63bff92fa6fd212e3ba6f81b4d2e74fe47e02e86b06e8b1b1cd19588331ce5e4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base bytestring case-insensitive cond data-default directory - dyre feed filepath hslogger http-conduit http-types lens mime-mail - monad-control mtl network network-uri old-locale opml random - resourcet text text-icu time timerep tls transformers - transformers-base utf8-string xdg-basedir xml + aeson ansi-wl-pprint atom-conduit base bytestring case-insensitive + chunked-data comonad compdata conduit conduit-combinators + conduit-parse connection containers directory dyre exceptions + fast-logger filepath free hashable HaskellNet HaskellNet-SSL + http-client http-client-tls http-types mime-mail mono-traversable + monoid-subclasses network opml-conduit optparse-applicative rainbow + rainbox rss-conduit text time timerep tls transformers + uri-bytestring xml xml-conduit ]; - executableHaskellDepends = [ base ]; + executableHaskellDepends = [ base free ]; jailbreak = true; - description = "Retrieve RSS/Atom feeds and write one mail per new item in a maildir"; + homepage = "https://github.com/k0ral/imm"; + description = "Execute arbitrary actions for each unread element of RSS/Atom feeds"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -126702,6 +127501,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "inline-java" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , distributed-closure, inline-c, jvm, singletons, text + , thread-local-storage, vector + }: + mkDerivation { + pname = "inline-java"; + version = "0.1"; + sha256 = "ec4a751af5749b1b12dd9fd20ae40745f0410375024bd895293d52b8386f5dcb"; + libraryHaskellDepends = [ + base binary bytestring containers distributed-closure inline-c + singletons text thread-local-storage vector + ]; + librarySystemDepends = [ jvm ]; + homepage = "http://github.com/tweag/inline-java#readme"; + description = "Java interop via inline Java code in Haskell modules"; + license = stdenv.lib.licenses.bsd3; + }) {jvm = null;}; + "inline-r" = callPackage ({ mkDerivation, aeson, base, bytestring, c2hs, containers , data-default-class, deepseq, directory, exceptions, filepath @@ -126758,6 +127576,8 @@ self: { pname = "insert-ordered-containers"; version = "0.1.0.1"; sha256 = "4905e5d128c19887a79b281150acb16cb3b043ab2c5a7788b0151ba7d46b900a"; + revision = "1"; + editedCabalFile = "845948717464c40358d8d635fa3b8240fb4a2464558527a4cfeccdf426403eaa"; libraryHaskellDepends = [ aeson base base-compat hashable lens semigroupoids semigroups text transformers unordered-containers @@ -127452,6 +128272,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "invertible" = callPackage + ({ mkDerivation, arrows, base, haskell-src-meta, HList, invariant + , lens, partial-isomorphisms, Piso, semigroupoids, template-haskell + , TypeCompose + }: + mkDerivation { + pname = "invertible"; + version = "0.1"; + sha256 = "f51ee09313044a21f4c0a5e9d7b9c9c8bb1bd91de33de9cb23d462991713829e"; + libraryHaskellDepends = [ + arrows base haskell-src-meta HList invariant lens + partial-isomorphisms Piso semigroupoids template-haskell + TypeCompose + ]; + description = "bidirectional arrows, bijective functions, and invariant functors"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "invertible-syntax" = callPackage ({ mkDerivation, base, partial-isomorphisms }: mkDerivation { @@ -130238,8 +131076,8 @@ self: { }: mkDerivation { pname = "json-ast"; - version = "0.2"; - sha256 = "595ed692fa82dc6e178d368a6a247eb19f96f643ce030b8c178ec7d54b0a4b5c"; + version = "0.3"; + sha256 = "877c8fde915cae37aa24a3d1c98dab75a81aa00a86aa7077b766ab5033c516b9"; libraryHaskellDepends = [ base scientific text unordered-containers vector ]; @@ -130258,6 +131096,7 @@ self: { libraryHaskellDepends = [ base json-ast QuickCheck quickcheck-instances ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/json-ast-quickcheck"; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = stdenv.lib.licenses.mit; @@ -130506,7 +131345,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-autotype" = callPackage + "json-autotype_1_0_13" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -130536,6 +131375,39 @@ self: { homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "json-autotype" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, GenericPretty, hashable, hflags, lens, mmap, mtl + , pretty, process, QuickCheck, scientific, smallcheck, text + , uniplate, unordered-containers, vector + }: + mkDerivation { + pname = "json-autotype"; + version = "1.0.14"; + sha256 = "37536fd9cd18ae8fa9527359cbfb8c69dc5bed51abdd7c7931ac0d12642fd2f4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags lens mmap mtl pretty process scientific text uniplate + unordered-containers vector + ]; + executableHaskellDepends = [ + aeson base bytestring containers filepath GenericPretty hashable + hflags lens mtl pretty process scientific text uniplate + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers directory filepath GenericPretty + hashable hflags lens mtl pretty process QuickCheck scientific + smallcheck text uniplate unordered-containers vector + ]; + homepage = "https://github.com/mgajda/json-autotype"; + description = "Automatic type declaration for JSON input data"; + license = stdenv.lib.licenses.bsd3; }) {}; "json-b" = callPackage @@ -130586,8 +131458,8 @@ self: { }: mkDerivation { pname = "json-encoder"; - version = "0.1.6"; - sha256 = "c19d6d4530d654f31637db1ab409295a0b33f5a3bbd16724253c0e9c347d17d9"; + version = "0.1.7"; + sha256 = "8796142da268ecd869042f8ab7cf5069dad8d75155715f39cee4ec7429b98c9d"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras scientific semigroups text @@ -130794,8 +131666,8 @@ self: { }: mkDerivation { pname = "json-rpc-client"; - version = "0.2.3.0"; - sha256 = "6c4325ad6d9fc8552d496f6bf680444dd90454c44c3a4265ed7e9a5b473f6a3a"; + version = "0.2.4.0"; + sha256 = "9f65be9991b073441332023cdfdf232e8455a530fb2fe922af2932e39436cee7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -130819,8 +131691,8 @@ self: { }: mkDerivation { pname = "json-rpc-server"; - version = "0.2.3.0"; - sha256 = "73d633f3bfeea0ad785916c53afb1f4e3d481bef55977dc20d51297180148337"; + version = "0.2.4.0"; + sha256 = "2a3a993a2d99f503fed13fad0193d005b2c75d768abdb64a254a687bb65e3ed1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131877,34 +132749,6 @@ self: { }) {}; "katip" = callPackage - ({ mkDerivation, aeson, auto-update, base, bytestring, containers - , directory, either, exceptions, hostname, lens, lens-aeson - , monad-control, mtl, old-locale, quickcheck-instances - , regex-tdfa-rc, resourcet, string-conv, tasty, tasty-hunit - , tasty-quickcheck, template-haskell, temporary, text, time - , time-locale-compat, transformers, transformers-base - , transformers-compat, unix, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.1.1.0"; - sha256 = "37b3c7e8975343a0f3e819b402b39b97c838916a42f00a497fcdf4e04512c1e8"; - libraryHaskellDepends = [ - aeson auto-update base bytestring containers either exceptions - hostname lens lens-aeson monad-control mtl old-locale resourcet - string-conv template-haskell text time time-locale-compat - transformers transformers-base transformers-compat unix - unordered-containers - ]; - testHaskellDepends = [ - aeson base directory quickcheck-instances regex-tdfa-rc tasty - tasty-hunit tasty-quickcheck template-haskell temporary text time - ]; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "katip_0_2_0_0" = callPackage ({ mkDerivation, aeson, auto-update, base, bytestring, containers , directory, either, exceptions, hostname, microlens, microlens-th , monad-control, mtl, old-locale, quickcheck-instances @@ -131932,37 +132776,9 @@ self: { homepage = "https://github.com/Soostone/katip"; description = "A structured logging framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "katip-elasticsearch" = callPackage - ({ mkDerivation, aeson, async, base, bloodhound, containers - , enclosed-exceptions, exceptions, http-client, http-types, katip - , lens, lens-aeson, quickcheck-instances, random, retry, scientific - , stm, stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "katip-elasticsearch"; - version = "0.1.1.0"; - sha256 = "4985289f907ce8b00041bd5dd5126745eff3b7f55a5a5e8aec349869413b990f"; - libraryHaskellDepends = [ - aeson async base bloodhound enclosed-exceptions exceptions - http-client http-types katip random retry scientific stm stm-chans - text time transformers unordered-containers uuid - ]; - testHaskellDepends = [ - aeson base bloodhound containers http-client http-types katip lens - lens-aeson quickcheck-instances scientific stm tasty tasty-hunit - tasty-quickcheck text time transformers unordered-containers vector - ]; - doCheck = false; - description = "ElasticSearch scribe for the Katip logging framework"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "katip-elasticsearch_0_2_0_0" = callPackage ({ mkDerivation, aeson, async, base, bloodhound, containers , enclosed-exceptions, exceptions, http-client, http-types, katip , lens, lens-aeson, quickcheck-instances, random, retry, scientific @@ -131983,7 +132799,7 @@ self: { lens-aeson quickcheck-instances scientific stm tasty tasty-hunit tasty-quickcheck text time transformers unordered-containers vector ]; - jailbreak = true; + doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -132834,7 +133650,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "keycode" = callPackage + "keycode_0_1_1" = callPackage ({ mkDerivation, base, containers }: mkDerivation { pname = "keycode"; @@ -132846,9 +133662,10 @@ self: { homepage = "https://github.com/RyanGlScott/keycode"; description = "Maps web browser keycodes to their corresponding keyboard keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "keycode_0_2" = callPackage + "keycode" = callPackage ({ mkDerivation, base, containers, ghc-prim }: mkDerivation { pname = "keycode"; @@ -132858,7 +133675,6 @@ self: { homepage = "https://github.com/RyanGlScott/keycode"; description = "Maps web browser keycodes to their corresponding keyboard keys"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyed" = callPackage @@ -133598,33 +134414,18 @@ self: { }) {}; "lackey" = callPackage - ({ mkDerivation, base, servant, tasty, tasty-hspec }: - mkDerivation { - pname = "lackey"; - version = "0.2.0"; - sha256 = "8c54bd4c8901fe0a16149d57e366c3d11d21b9656f8be9ffe8eb86f25e0d0f19"; - libraryHaskellDepends = [ base servant ]; - testHaskellDepends = [ base servant tasty tasty-hspec ]; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby consumers of Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - - "lackey_0_3_1" = callPackage ({ mkDerivation, base, servant, servant-foreign, tasty, tasty-hspec , text }: mkDerivation { pname = "lackey"; - version = "0.3.1"; - sha256 = "a7b552e3c24fbb6e272cabb897b6788712da789a3934d0ad3bae6fe9857d1d2a"; + version = "0.3.2"; + sha256 = "0da7478ee80d29eb96efaf8d3df9acc24f037b062c743a6c987765d00abf84e1"; libraryHaskellDepends = [ base servant servant-foreign text ]; testHaskellDepends = [ base servant tasty tasty-hspec text ]; - jailbreak = true; homepage = "https://github.com/tfausak/lackey#readme"; description = "Generate Ruby clients from Servant APIs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lagrangian" = callPackage @@ -135330,7 +136131,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_5_14_7" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework , test-framework-hunit, utf8-light, utf8-string @@ -135351,9 +136152,10 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript_0_6_0_4" = callPackage + "language-javascript" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string @@ -135370,11 +136172,9 @@ self: { array base blaze-builder bytestring Cabal containers hspec mtl QuickCheck utf8-light utf8-string ]; - jailbreak = true; homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-kort" = callPackage @@ -135859,6 +136659,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "language-webidl" = callPackage + ({ mkDerivation, base, parsec, wl-pprint }: + mkDerivation { + pname = "language-webidl"; + version = "0.1.1.0"; + sha256 = "2318258e89b6301ae23fde9e4301f40e354f7cd4a8953c55de3291259f2cde19"; + libraryHaskellDepends = [ base parsec wl-pprint ]; + description = "Parser and Pretty Printer for WebIDL"; + license = stdenv.lib.licenses.mit; + }) {}; + "largeword_1_2_3" = callPackage ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -135982,7 +136793,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "latex-formulae-hakyll" = callPackage + "latex-formulae-hakyll_0_2_0_1" = callPackage ({ mkDerivation, base, hakyll, latex-formulae-image , latex-formulae-pandoc, lrucache, pandoc-types }: @@ -135994,12 +136805,14 @@ 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; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "latex-formulae-hakyll_0_2_0_2" = callPackage + "latex-formulae-hakyll" = callPackage ({ mkDerivation, base, hakyll, latex-formulae-image , latex-formulae-pandoc, lrucache, pandoc-types }: @@ -136014,7 +136827,6 @@ self: { homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex-formulae-image_0_1_1_0" = callPackage @@ -136863,7 +137675,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "lens_4_13_2_1" = callPackage + "lens_4_14" = callPackage ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring , comonad, containers, contravariant, deepseq, directory , distributive, doctest, exceptions, filepath, free @@ -136876,8 +137688,8 @@ self: { }: mkDerivation { pname = "lens"; - version = "4.13.2.1"; - sha256 = "d48509a066f864c3c6a8944117e788bab80587d40b1799600c99da389ee249b6"; + version = "4.14"; + sha256 = "70a3cd18ef352950b88d6cac449988b9320704b56dceda80e7de9f2907ee5f4b"; libraryHaskellDepends = [ array base base-orphans bifunctors bytestring comonad containers contravariant distributive exceptions filepath free ghc-prim @@ -137044,10 +137856,10 @@ self: { ({ mkDerivation, base, lens, time }: mkDerivation { pname = "lens-datetime"; - version = "0.2.1"; - sha256 = "e2445f051d99a3f76890f7a6c91c7baccb1e587e1ba6d67ea4d20e6efdd113f3"; + version = "0.3"; + sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; libraryHaskellDepends = [ base lens time ]; - homepage = "http://github.com/nilcons/lens-datetime"; + homepage = "https://github.com/nilcons/lens-datetime"; description = "Lenses for Data.Time.* types"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137330,7 +138142,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lentil" = callPackage + "lentil_0_1_11_0" = callPackage ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip , filepath, hspec, natural-sort, optparse-applicative, parsec , regex-tdfa @@ -137339,6 +138151,33 @@ self: { pname = "lentil"; version = "0.1.11.0"; sha256 = "7185c00900bb288df3f335c87e522e12a4ba2052c4937d98d50a053a609bb71f"; + revision = "1"; + editedCabalFile = "0636a6b80d201ceb5d301d9057052f30eb83da5fb153ba06aa5091cfc3c2999e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath natural-sort + optparse-applicative parsec regex-tdfa + ]; + testHaskellDepends = [ + ansi-wl-pprint base csv directory filemanip filepath hspec + natural-sort optparse-applicative parsec regex-tdfa + ]; + homepage = "http://www.ariis.it/static/articles/lentil/page.html"; + description = "frugal issue tracker"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lentil" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip + , filepath, hspec, natural-sort, optparse-applicative, parsec + , regex-tdfa + }: + mkDerivation { + pname = "lentil"; + version = "0.1.12.0"; + sha256 = "a49c806f024ba30197a85f043c84d8ad1ca5aaca3b6d96ebb8727a4e438380fb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -138110,22 +138949,35 @@ self: { }) {}; "libravatar" = callPackage - ({ mkDerivation, base, bytestring, crypto-api, data-default-class - , dns, network-uri, pureMD5, random, SHA, url, utf8-string + ({ mkDerivation, base, bytestring, cryptonite, data-default-class + , dns, network-uri, random, url, utf8-string }: mkDerivation { pname = "libravatar"; - version = "0.3.0.0"; - sha256 = "2371b91f8ff4abdeba4374d20b4fa9c90fe0e9871c874bd61f32380b32ef88bf"; + version = "0.3.0.1"; + sha256 = "43c646e85abcf577cb0fa09feffbbd45f4cd4cc6203db33d5a6e5a61da42dace"; libraryHaskellDepends = [ - base bytestring crypto-api data-default-class dns network-uri - pureMD5 random SHA url utf8-string + base bytestring cryptonite data-default-class dns network-uri + random url utf8-string ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; license = stdenv.lib.licenses.publicDomain; }) {}; + "libroman" = callPackage + ({ mkDerivation, base, hspec, QuickCheck, word8 }: + mkDerivation { + pname = "libroman"; + version = "1.0.1"; + sha256 = "864dd1ebfe4709ff48c0d4678ca2ee5da62b864228b165e04dbcccc64fb24b84"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck word8 ]; + homepage = "https://ahakki.xyz"; + description = "arabic to roman numeral conversions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "libssh2" = callPackage ({ mkDerivation, base, bytestring, c2hs, libssh2, network, ssh2 , syb, time @@ -140842,8 +141694,8 @@ self: { }: mkDerivation { pname = "log"; - version = "0.3.1"; - sha256 = "6239019b513145e0e8117dff2deaca0a85c9f36f0419c892c7c93def98624b0e"; + version = "0.4"; + sha256 = "0358e82bd4e261545fefbf197eac335daa5e05987948dc322b7e16439755132f"; libraryHaskellDepends = [ aeson aeson-pretty base base64-bytestring bytestring deepseq exceptions hpqtypes lifted-base monad-control monad-time mtl @@ -142259,8 +143111,8 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.11"; - sha256 = "d29c8b29daba5fc5f563cac7c1ac32f876338ff62f3012bc18ed966d35a36378"; + version = "0.11.0.1"; + sha256 = "bb61c59d14a0f12866365c5ec97bc791c4f9ae0cbad7b191769d14650f52eb44"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void @@ -143335,8 +144187,8 @@ self: { ({ mkDerivation, base, containers, srcloc, text }: mkDerivation { pname = "mainland-pretty"; - version = "0.4.1.3"; - sha256 = "d833485def1f7b9320b76fee7f7cbc1462d6358e87af05aea049ddd6cc7b4640"; + version = "0.4.1.4"; + sha256 = "b6526b119dd84e006740c69ab794d0a43b855fea29bb2a3a8ed2568b995faf9c"; libraryHaskellDepends = [ base containers srcloc text ]; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Pretty printing designed for printing source code"; @@ -144017,7 +144869,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "mandrill_0_5_1_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -144039,6 +144891,31 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mandrill" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, blaze-html + , bytestring, containers, email-validate, http-client + , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck + , raw-strings-qq, tasty, tasty-hunit, tasty-quickcheck, text, time + , unordered-containers + }: + mkDerivation { + pname = "mandrill"; + version = "0.5.2.0"; + sha256 = "323a44776aaf831361f395a50d43032c615936112c147719221008c6a89e62cd"; + libraryHaskellDepends = [ + aeson base base64-bytestring blaze-html bytestring containers + email-validate http-client http-client-tls http-types lens mtl + old-locale QuickCheck text time unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit + tasty-quickcheck text + ]; + description = "Library for interfacing with the Mandrill JSON API"; + license = stdenv.lib.licenses.mit; }) {}; "mandulia" = callPackage @@ -144758,7 +145635,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; - "math-functions" = callPackage + "math-functions_0_1_5_2" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -144779,9 +145656,10 @@ self: { homepage = "https://github.com/bos/math-functions"; description = "Special functions and Chebyshev polynomials"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "math-functions_0_1_6_0" = callPackage + "math-functions" = callPackage ({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 , vector, vector-th-unbox @@ -144797,10 +145675,10 @@ self: { base HUnit ieee754 QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + doCheck = false; homepage = "https://github.com/bos/math-functions"; description = "Special functions and Chebyshev polynomials"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathblog" = callPackage @@ -147537,7 +148415,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mime-types" = callPackage + "mime-types_0_1_0_6" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "mime-types"; @@ -147547,9 +148425,10 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Basic mime-type handling types and functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mime-types_0_1_0_7" = callPackage + "mime-types" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "mime-types"; @@ -147559,7 +148438,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Basic mime-type handling types and functions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mines" = callPackage @@ -148322,8 +149200,8 @@ self: { }: mkDerivation { pname = "module-management"; - version = "0.20.4"; - sha256 = "f85be205a423d8fb2251a432ec4492a4d11cfa41aaa7005a3e958108809fbba0"; + version = "0.21"; + sha256 = "2518ed4e792fe743d14bc787347cda74bd4eb0aa070831e5453f5b1063a3e28e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -148339,7 +149217,6 @@ self: { testHaskellDepends = [ base containers filepath haskell-src-exts HUnit process ]; - jailbreak = true; homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; @@ -148967,6 +149844,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "monad-log" = callPackage + ({ mkDerivation, aeson, base, bytestring, exceptions, fast-logger + , lifted-base, monad-control, template-haskell, text, text-show + , transformers + }: + mkDerivation { + pname = "monad-log"; + version = "0.1.1.0"; + sha256 = "34000c62083e4b32c59a8a7a731608a573ce3fec97a4cf34d16cf77c2e7e8bc1"; + libraryHaskellDepends = [ + aeson base bytestring exceptions fast-logger lifted-base + monad-control template-haskell text text-show transformers + ]; + description = "A simple and fast logging monad"; + license = stdenv.lib.licenses.mit; + }) {}; + "monad-logger_0_3_11" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base @@ -149690,7 +150584,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "monad-time" = callPackage + "monad-time_0_1" = callPackage ({ mkDerivation, base, mtl, time }: mkDerivation { pname = "monad-time"; @@ -149700,6 +150594,20 @@ self: { homepage = "https://github.com/scrive/monad-time"; description = "Type class for monads which carry the notion of the current time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-time" = callPackage + ({ mkDerivation, base, mtl, time }: + mkDerivation { + pname = "monad-time"; + version = "0.2"; + sha256 = "a9b901ca94b4c71d5f374a472506db92d26b13af523ceafe1e3302e8bae8b05d"; + libraryHaskellDepends = [ base mtl time ]; + testHaskellDepends = [ base mtl time ]; + homepage = "https://github.com/scrive/monad-time"; + description = "Type class for monads which carry the notion of the current time"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-tx" = callPackage @@ -149729,7 +150637,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-unlift" = callPackage + "monad-unlift_0_1_1_0" = callPackage ({ mkDerivation, base, constraints, exceptions, monad-control, mtl , mutable-containers, resourcet, stm, transformers , transformers-base @@ -149745,6 +150653,61 @@ self: { homepage = "https://github.com/fpco/monad-unlift"; description = "Typeclasses for representing monad transformer unlifting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-unlift" = callPackage + ({ mkDerivation, base, constraints, exceptions, monad-control, mtl + , mutable-containers, resourcet, stm, transformers + , transformers-base + }: + mkDerivation { + pname = "monad-unlift"; + version = "0.1.2.0"; + sha256 = "3cefba607cd9ebc42c93afa17b2d4be0dd9496638b79895a2a5fff0e3e17641d"; + libraryHaskellDepends = [ + base constraints exceptions monad-control mtl mutable-containers + resourcet stm transformers transformers-base + ]; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; + }) {}; + + "monad-unlift_0_2_0" = callPackage + ({ mkDerivation, base, constraints, monad-control, transformers + , transformers-base + }: + mkDerivation { + pname = "monad-unlift"; + version = "0.2.0"; + sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; + libraryHaskellDepends = [ + base constraints monad-control transformers transformers-base + ]; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-unlift-ref" = callPackage + ({ mkDerivation, base, constraints, exceptions, monad-control + , monad-unlift, mtl, mutable-containers, resourcet, stm + , transformers, transformers-base + }: + mkDerivation { + pname = "monad-unlift-ref"; + version = "0.2.0"; + sha256 = "a97acc3384dcde65109400d77fa0cd58617c77708204d7d825b6591a65444ce1"; + libraryHaskellDepends = [ + base constraints exceptions monad-control monad-unlift mtl + mutable-containers resourcet stm transformers transformers-base + ]; + jailbreak = true; + homepage = "https://github.com/fpco/monad-unlift"; + description = "Typeclasses for representing monad transformer unlifting"; + license = stdenv.lib.licenses.mit; }) {}; "monad-wrap" = callPackage @@ -150081,7 +151044,6 @@ self: { base hspec network servant servant-client servant-server time timerep transformers wai warp ]; - jailbreak = true; description = "Haskell bindings for the Mondo API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -150842,7 +151804,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoidal-containers" = callPackage + "monoidal-containers_0_1_2_4" = callPackage ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype , unordered-containers }: @@ -150856,6 +151818,23 @@ self: { homepage = "http://github.com/bgamari/monoidal-containers"; description = "Containers with monoidal accumulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monoidal-containers" = callPackage + ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype + , unordered-containers + }: + mkDerivation { + pname = "monoidal-containers"; + version = "0.1.2.5"; + sha256 = "c82124b1e867a271bafeffb6fb8fb1febb1887154bf28225b174180babc9d438"; + libraryHaskellDepends = [ + base containers deepseq hashable lens newtype unordered-containers + ]; + homepage = "http://github.com/bgamari/monoidal-containers"; + description = "Containers with monoidal accumulation"; + license = stdenv.lib.licenses.bsd3; }) {}; "monoidplus" = callPackage @@ -151079,34 +152058,6 @@ self: { }) {}; "morte" = callPackage - ({ mkDerivation, alex, array, base, binary, containers, deepseq - , Earley, http-client, http-client-tls, microlens, microlens-mtl - , mtl, optparse-applicative, pipes, QuickCheck, system-fileio - , system-filepath, tasty, tasty-hunit, tasty-quickcheck, text - , text-format, transformers - }: - mkDerivation { - pname = "morte"; - version = "1.5.1"; - sha256 = "51868301687ac66d80597267a36c99622a1a357a88690fadf283974d7936f0f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary containers deepseq Earley http-client - http-client-tls microlens microlens-mtl pipes system-fileio - system-filepath text text-format transformers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ base optparse-applicative text ]; - testHaskellDepends = [ - base mtl QuickCheck system-filepath tasty tasty-hunit - tasty-quickcheck text transformers - ]; - description = "A bare-bones calculus of constructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "morte_1_6_0" = callPackage ({ mkDerivation, alex, array, base, binary, containers, deepseq , Earley, http-client, http-client-tls, microlens, microlens-mtl , mtl, optparse-applicative, pipes, QuickCheck, system-fileio @@ -151132,7 +152083,6 @@ self: { ]; description = "A bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mosaico-lib" = callPackage @@ -152329,7 +153279,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "murmur-hash" = callPackage + "murmur-hash_0_1_0_8" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { pname = "murmur-hash"; @@ -152339,6 +153289,19 @@ self: { homepage = "http://github.com/nominolo/murmur-hash"; description = "MurmurHash2 implementation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "murmur-hash" = callPackage + ({ mkDerivation, base, bytestring }: + mkDerivation { + pname = "murmur-hash"; + version = "0.1.0.9"; + sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; + libraryHaskellDepends = [ base bytestring ]; + homepage = "http://github.com/nominolo/murmur-hash"; + description = "MurmurHash2 implementation for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "murmur3" = callPackage @@ -152785,7 +153748,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mutable-containers" = callPackage + "mutable-containers_0_3_2" = callPackage ({ mkDerivation, base, containers, ghc-prim, hspec , mono-traversable, primitive, QuickCheck, vector }: @@ -152802,9 +153765,10 @@ self: { homepage = "https://github.com/fpco/mutable-containers"; description = "Abstactions and concrete implementations of mutable containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mutable-containers_0_3_2_1" = callPackage + "mutable-containers" = callPackage ({ mkDerivation, base, containers, ghc-prim, hspec , mono-traversable, primitive, QuickCheck, vector }: @@ -152821,7 +153785,6 @@ self: { homepage = "https://github.com/fpco/mutable-containers"; description = "Abstactions and concrete implementations of mutable containers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mutable-iter" = callPackage @@ -154567,13 +155530,12 @@ self: { pname = "netrc"; version = "0.2.0.0"; sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "1"; - editedCabalFile = "55e4e8785866fa2145f9b4de21522d4092a7c486845062915704b2917b8c4fbd"; + revision = "2"; + editedCabalFile = "81e838434e1cae11b94edbcfb61fee89f847a32e5a745fe59de69e6af9207ac9"; libraryHaskellDepends = [ base bytestring deepseq parsec ]; testHaskellDepends = [ base bytestring tasty tasty-golden tasty-quickcheck ]; - jailbreak = true; homepage = "https://github.com/hvr/netrc"; description = "Parser for .netrc files"; license = stdenv.lib.licenses.gpl3; @@ -155031,6 +155993,7 @@ self: { attoparsec base bytestring exceptions hspec mtl network network-simple transformers ]; + doCheck = false; homepage = "http://github.com/solatis/haskell-network-attoparsec"; description = "Utility functions for running a parser against a socket"; license = stdenv.lib.licenses.mit; @@ -156266,13 +157229,12 @@ self: { }: mkDerivation { pname = "newtype-deriving"; - version = "0.1.3"; - sha256 = "15090bbb5327da577b9f06d8d703c9762aabf7446cf930096b9c1273d28f83ba"; + version = "0.1.4"; + sha256 = "14f62033ad7c59aa3121c336c2fac3fd1374accde3ad996d6c94c525f55697e2"; libraryHaskellDepends = [ base base-prelude monad-control template-haskell transformers transformers-base ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/newtype-deriving"; description = "Instance derivers for newtype wrappers"; license = stdenv.lib.licenses.mit; @@ -156716,8 +157678,8 @@ self: { ({ mkDerivation, array, base, containers, regex-compat }: mkDerivation { pname = "nofib-analyse"; - version = "7.12.0.20151208"; - sha256 = "d0ba0f82bbd0d1324e6331d75f43a0b5c1c207a3ad7df16668b730bb336725ad"; + version = "8.1.0.20160428"; + sha256 = "2672847477c5a5cceb0495cea009f1b531ae84901e563d5d851d187729384ea1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ array base containers regex-compat ]; @@ -157823,8 +158785,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.17"; - sha256 = "0384e4d970bed711c8415bba64e4fae6d8a18a442defc3775bd08fb46bbdd18e"; + version = "0.4.18"; + sha256 = "75662d122bf7eb1f552cda017e45d74b2f0364a45ac0a11eb3af1687d8ce8f44"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -157840,15 +158802,15 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "octane_0_4_18" = callPackage + "octane_0_4_19" = callPackage ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary , binary-bits, bytestring, containers, data-binary-ieee754, deepseq , newtype-generics, tasty, tasty-hspec, text }: mkDerivation { pname = "octane"; - version = "0.4.18"; - sha256 = "75662d122bf7eb1f552cda017e45d74b2f0364a45ac0a11eb3af1687d8ce8f44"; + version = "0.4.19"; + sha256 = "e0e71189d3c0848e2c2c59cae80d82979be5d00c25e38a100392022c9ce43ab1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -158702,8 +159664,8 @@ self: { }: mkDerivation { pname = "open-typerep"; - version = "0.5"; - sha256 = "8060a300cc6a3f72a0b3aba74574399c112362f74bbc69498203e82dd0986d22"; + version = "0.6"; + sha256 = "22f9e8654c243e7f98c110dbf7401c1d0ff3a547e012fa9d10a16ab4853f77b0"; libraryHaskellDepends = [ base constraints mtl syntactic tagged template-haskell ]; @@ -159016,6 +159978,26 @@ self: { license = "GPL"; }) {}; + "opensource" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, tasty, tasty-hunit, text, transformers + }: + mkDerivation { + pname = "opensource"; + version = "0.1.0.0"; + sha256 = "3459b6ce70fb8fc8bdf9d9f6ed0476724cb8a11b673fc60422edac2376620127"; + libraryHaskellDepends = [ + aeson base http-client http-client-tls text transformers + ]; + testHaskellDepends = [ + aeson base bytestring http-client http-client-tls tasty tasty-hunit + text transformers + ]; + homepage = "https://api.opensource.org/"; + description = "Haskell API Wrapper for the Open Source License API"; + license = stdenv.lib.licenses.mit; + }) {}; + "openssh-github-keys" = callPackage ({ mkDerivation, base, directory, dotenv, filepath, hspec , keyword-args, octohat, optparse-applicative, parsec, text, unix @@ -161559,8 +162541,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.0.1"; - sha256 = "44bdbc38d8d7a743951a2333fb70b33a6497b2d50ccdb5696736fdc5133aef21"; + version = "0.2.1.1"; + sha256 = "4b90d228a8943e31ad7d2a1861b74bdb98af9422e3e675c209a012ca54e0deaa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -162114,6 +163096,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "paranoia" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, hdaemonize + , HsOpenSSL, http-client, http-client-openssl, http-types, network + , optparse-applicative, split, streaming-commons, text, time, unix + , wai, warp + }: + mkDerivation { + pname = "paranoia"; + version = "0.1.0.0"; + sha256 = "57fba4430304c244476c898cf22206077c54f827e698ca7e18cf60a42fe7c2ec"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory filepath HsOpenSSL http-client + http-client-openssl http-types network split streaming-commons text + time unix wai warp + ]; + executableHaskellDepends = [ + base hdaemonize optparse-applicative + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/troydm/paranoia#readme"; + description = "http proxy server"; + license = stdenv.lib.licenses.mit; + }) {}; + "parco" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -164121,6 +165129,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "perfecthash" = callPackage + ({ mkDerivation, array, base, bytestring, cmph, containers, hspec + , QuickCheck, time + }: + mkDerivation { + pname = "perfecthash"; + version = "0.2.0"; + sha256 = "99274578782539261b153b1f76adce3346157fa41cb6844d6265a70f72e209e3"; + libraryHaskellDepends = [ + array base bytestring cmph containers time + ]; + testHaskellDepends = [ + base bytestring cmph containers hspec QuickCheck + ]; + description = "A perfect hashing library for mapping bytestrings to values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "period" = callPackage ({ mkDerivation, base, hspec, HUnit, old-locale , optparse-applicative, parsec, text, text-show, time @@ -164815,6 +165841,34 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; + "persistent-audit" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, getopt-generics + , hspec, mongoDB, persistent, persistent-mongoDB, persistent-sqlite + , persistent-template, text, time, transformers + }: + mkDerivation { + pname = "persistent-audit"; + version = "0.1.0.1"; + sha256 = "d610b0614e3005958e5dcaf59fd9e847d36606cbf5dd1af0b43708e39729f956"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base bytestring mongoDB persistent persistent-mongoDB + persistent-template text time transformers + ]; + executableHaskellDepends = [ + attoparsec base bytestring getopt-generics mongoDB persistent + persistent-mongoDB persistent-template text time + ]; + testHaskellDepends = [ + attoparsec base bytestring hspec mongoDB persistent + persistent-mongoDB persistent-sqlite persistent-template text time + transformers + ]; + description = "Parses a Persist Model file and produces Audit Models"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "persistent-cereal" = callPackage ({ mkDerivation, base, cereal, persistent, text }: mkDerivation { @@ -166162,7 +167216,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_6" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -166183,6 +167237,31 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.8"; + sha256 = "71fdbbf04cc9f2f9f897eafb71bf6c3243a9cee58942eb381e2ef6b684456a77"; + libraryHaskellDepends = [ + aeson aeson-compat base bytestring containers ghc-prim + http-api-data monad-control monad-logger path-pieces persistent + tagged template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -166639,6 +167718,29 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "phoityne-vscode" = callPackage + ({ mkDerivation, aeson, base, bytestring, Cabal, cmdargs, conduit + , conduit-extra, ConfigFile, containers, directory, filepath + , hslogger, hspec, HStringTemplate, MissingH, mtl, parsec, process + , resourcet, safe, split, text, transformers + }: + mkDerivation { + pname = "phoityne-vscode"; + version = "0.0.1.0"; + sha256 = "17c662ed380004e0268b3b2dc5c467914e74bd479688fd9ce2b66530f49fb07e"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring Cabal cmdargs conduit conduit-extra + ConfigFile containers directory filepath hslogger HStringTemplate + MissingH mtl parsec process resourcet safe split text transformers + ]; + testHaskellDepends = [ aeson base hspec ]; + homepage = "https://sites.google.com/site/phoityne/"; + description = "ghci debug viewer on Visual Studio Code"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "phone-numbers" = callPackage ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { @@ -167045,16 +168147,17 @@ self: { "pinchot" = callPackage ({ mkDerivation, base, containers, Earley, lens, ListLike - , template-haskell, transformers + , semigroups, template-haskell, transformers }: mkDerivation { pname = "pinchot"; - version = "0.16.0.0"; - sha256 = "b0fef14a482caff2cb1e7985205ec914019996a75960fc1f937d2d8da18b15bd"; + version = "0.18.0.0"; + sha256 = "83493be81fe847f04dccd8868f33fedb95f35e4624d99a8e40e41c6eee3a2c9a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers Earley lens ListLike template-haskell transformers + base containers Earley lens ListLike semigroups template-haskell + transformers ]; homepage = "http://www.github.com/massysett/pinchot"; description = "Write grammars, not parsers"; @@ -168276,28 +169379,6 @@ self: { }) {}; "pipes-transduce" = callPackage - ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest - , foldl, free, lens-family-core, pipes, pipes-bytestring - , pipes-concurrency, pipes-group, pipes-parse, pipes-safe - , pipes-text, tasty, tasty-hunit, text, transformers, void - }: - mkDerivation { - pname = "pipes-transduce"; - version = "0.3.3.0"; - sha256 = "af40b285eb0e55f8ba17223890b09b4b9cc9b9774d55c7539d878e1d3d68c49b"; - libraryHaskellDepends = [ - base bifunctors bytestring conceit foldl free lens-family-core - pipes pipes-bytestring pipes-concurrency pipes-group pipes-parse - pipes-safe pipes-text text transformers void - ]; - testHaskellDepends = [ - base doctest foldl free pipes tasty tasty-hunit text - ]; - description = "Interfacing pipes with foldl folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "pipes-transduce_0_4" = callPackage ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest , foldl, free, microlens, pipes, pipes-bytestring , pipes-concurrency, pipes-group, pipes-parse, pipes-safe @@ -168317,7 +169398,6 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-vector" = callPackage @@ -170446,6 +171526,7 @@ self: { tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time transformers uuid vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; @@ -170744,7 +171825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-simple" = callPackage + "postgresql-simple_0_5_1_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, bytestring-builder, case-insensitive, containers , cryptohash, hashable, HUnit, postgresql-libpq, scientific @@ -170766,6 +171847,31 @@ self: { doCheck = false; description = "Mid-Level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "postgresql-simple" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, bytestring-builder, case-insensitive, containers + , cryptohash, hashable, HUnit, postgresql-libpq, scientific + , template-haskell, text, time, transformers, uuid-types, vector + }: + mkDerivation { + pname = "postgresql-simple"; + version = "0.5.1.3"; + sha256 = "fadc86b416d0f16b12b8a30a98196ab9b1788d5612cc66e5c871726a861cbc24"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-builder + case-insensitive containers hashable postgresql-libpq scientific + template-haskell text time transformers uuid-types vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring containers cryptohash HUnit + text time vector + ]; + doCheck = false; + description = "Mid-Level PostgreSQL client library"; + license = stdenv.lib.licenses.bsd3; }) {}; "postgresql-simple-migration" = callPackage @@ -170843,6 +171949,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "postgresql-transactional" = callPackage + ({ mkDerivation, base, monad-control, mtl, postgresql-simple }: + mkDerivation { + pname = "postgresql-transactional"; + version = "1.0.0"; + sha256 = "5d4468f6142628432a6f6ace9485ac441a54f6ce42a99d8efaad6f532a9bfd48"; + libraryHaskellDepends = [ + base monad-control mtl postgresql-simple + ]; + description = "a transactional monad on top of postgresql-simple"; + license = stdenv.lib.licenses.mit; + }) {}; + "postgresql-typed" = callPackage ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring , containers, cryptonite, haskell-src-meta, memory, network @@ -171168,6 +172287,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pred-set" = callPackage + ({ mkDerivation, base, hashable, hashtables, HSet }: + mkDerivation { + pname = "pred-set"; + version = "0.0.1"; + sha256 = "cb22ec50f94cf76b6bc55fd66b91badfef657cbe1a6b6a59b691e48004c37726"; + libraryHaskellDepends = [ base hashable hashtables HSet ]; + description = "Simple cached predicates"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pred-trie_0_2_0" = callPackage ({ mkDerivation, base, hspec, QuickCheck, quickcheck-instances , semigroups @@ -171185,7 +172315,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pred-trie" = callPackage + "pred-trie_0_5_0" = callPackage ({ mkDerivation, attoparsec, base, composition-extra, deepseq , errors, hashable, mtl, poly-arity, QuickCheck , quickcheck-instances, semigroups, tasty, tasty-hunit @@ -171206,6 +172336,31 @@ self: { ]; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pred-trie" = callPackage + ({ mkDerivation, attoparsec, base, composition-extra, containers + , deepseq, errors, hashable, hashtables, mtl, poly-arity, pred-set + , QuickCheck, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, tries, unordered-containers + }: + mkDerivation { + pname = "pred-trie"; + version = "0.5.1"; + sha256 = "821e1cefa47a3090808af5c39d9997f6471e05aa4f98b46e05eccb9c4a99cdd1"; + libraryHaskellDepends = [ + base composition-extra containers hashable hashtables mtl + poly-arity pred-set QuickCheck semigroups tries + unordered-containers + ]; + testHaskellDepends = [ + attoparsec base composition-extra deepseq errors hashable mtl + poly-arity QuickCheck quickcheck-instances semigroups tasty + tasty-hunit tasty-quickcheck text tries unordered-containers + ]; + description = "Predicative tries"; + license = stdenv.lib.licenses.bsd3; }) {}; "predicates" = callPackage @@ -171835,6 +172990,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "prim-spoon" = callPackage + ({ mkDerivation, base, ghc-prim, HUnit, QuickCheck, spoon }: + mkDerivation { + pname = "prim-spoon"; + version = "0.1.0"; + sha256 = "3349b21d56c9c635c89b679d805e155cf658a26a675f553cbb261d61b776a27c"; + libraryHaskellDepends = [ base ghc-prim spoon ]; + testHaskellDepends = [ base HUnit QuickCheck spoon ]; + homepage = "https://github.com/michaeljklein/prim-spoon"; + description = "Catch errors thrown from pure computations using primops"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "prim-uniq" = callPackage ({ mkDerivation, base, dependent-sum, primitive }: mkDerivation { @@ -173079,8 +174247,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "3.0.1"; - sha256 = "6a0e12e90f1c962f477e210f3f99216c1d1a7b1ac2459a7122d04ab1e4fc5263"; + version = "3.0.3"; + sha256 = "c0dc9dff49c9062e51fd4e7486fe3d882766633f51110161d56c5011c378ee45"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173792,7 +174960,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "psqueues" = callPackage + "psqueues_0_2_2_0" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit , test-framework-quickcheck2 @@ -173808,9 +174976,10 @@ self: { ]; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "psqueues_0_2_2_1" = callPackage + "psqueues" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit , test-framework-quickcheck2 @@ -173826,7 +174995,6 @@ self: { ]; description = "Pure priority search queues"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pub" = callPackage @@ -174513,50 +175681,6 @@ self: { }) {}; "purescript" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base - , base-compat, bower-json, boxes, bytestring, containers, directory - , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec - , hspec-discover, http-types, HUnit, language-javascript - , lifted-base, monad-control, monad-logger, mtl, network - , optparse-applicative, parallel, parsec, pattern-arrows, pipes - , pipes-http, process, regex-tdfa, safe, semigroups, sourcemap - , split, stm, syb, text, time, transformers, transformers-base - , transformers-compat, unordered-containers, utf8-string, vector - }: - mkDerivation { - pname = "purescript"; - version = "0.8.3.0"; - sha256 = "3081eb17a8e3a61ef2b41c993b74f29d9e1091a2a7739f3c9c31530b1baebda7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-better-errors base base-compat bower-json boxes - bytestring containers directory dlist edit-distance filepath - fsnotify Glob http-types language-javascript lifted-base - monad-control monad-logger mtl parallel parsec pattern-arrows pipes - pipes-http process regex-tdfa safe semigroups sourcemap split stm - syb text time transformers transformers-base transformers-compat - unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint base base-compat boxes bytestring containers - directory filepath Glob haskeline monad-logger mtl network - optparse-applicative parsec process split stm text time - transformers transformers-compat utf8-string - ]; - testHaskellDepends = [ - aeson aeson-better-errors base base-compat boxes bytestring - containers directory filepath Glob haskeline hspec hspec-discover - HUnit mtl optparse-applicative parsec process stm text time - transformers transformers-compat - ]; - doCheck = false; - homepage = "http://www.purescript.org/"; - description = "PureScript Programming Language Compiler"; - license = stdenv.lib.licenses.mit; - }) {}; - - "purescript_0_8_5_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , base-compat, bower-json, boxes, bytestring, containers, directory , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec @@ -174595,11 +175719,10 @@ self: { HUnit mtl optparse-applicative parsec process stm text time transformers transformers-compat utf8-string vector ]; - jailbreak = true; + doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "purescript-bridge" = callPackage @@ -174636,6 +175759,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "pursuit-client" = callPackage + ({ mkDerivation, base, http-client, lens, taggy-lens, text, wreq }: + mkDerivation { + pname = "pursuit-client"; + version = "0.1.0"; + sha256 = "ac4d1ea126212eaeda65860a27293e7b9301507bd869280d836552e8bb427c35"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base http-client lens taggy-lens text wreq + ]; + executableHaskellDepends = [ base text ]; + homepage = "https://github.com/soupi/pursuit-client"; + description = "A cli client for pursuit"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "push-notify" = callPackage ({ mkDerivation, aeson, async, attoparsec-conduit, base , base16-bytestring, bytestring, cereal, certificate, conduit @@ -176627,8 +177767,8 @@ self: { }: mkDerivation { pname = "random-variates"; - version = "0.1.3.0"; - sha256 = "a2a4a5b450c9d33a60565dfd34645e0af970bcc87e60985c7387eeab75e255c4"; + version = "0.1.4.0"; + sha256 = "266a3e0a39914bf15da877e1cf866c263d73be820017d6543445510b16fda554"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176636,7 +177776,7 @@ self: { reinterpret-cast ]; executableHaskellDepends = [ base ]; - testHaskellDepends = [ base directory HUnit ]; + testHaskellDepends = [ base directory HUnit random ]; jailbreak = true; homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; @@ -176995,25 +178135,6 @@ self: { }) {}; "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, tasty - , tasty-hspec, text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "0.1.2"; - sha256 = "fb84658a310ff52cdff01b2186989929a6deb5e4cd1ed6877357302c3c09fcc1"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - testHaskellDepends = [ base tasty tasty-hspec ]; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ratel_0_1_3" = callPackage ({ mkDerivation, aeson, base, bytestring, case-insensitive , containers, http-client, http-client-tls, http-types, tasty , tasty-hspec, text, uuid @@ -177030,26 +178151,9 @@ self: { homepage = "https://github.com/tfausak/ratel#readme"; description = "Notify Honeybadger about exceptions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "0.1.1"; - sha256 = "687dde2f720a53d17d60fa3b91bac1bb12b5dd896b5d8603d6f5cfbe1502614c"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - - "ratel-wai_0_1_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-client, ratel, wai }: @@ -177063,7 +178167,6 @@ self: { homepage = "https://github.com/tfausak/ratel-wai#readme"; description = "Notify Honeybadger about exceptions via a WAI middleware"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ratio-int" = callPackage @@ -177610,18 +178713,18 @@ self: { "reactivity" = callPackage ({ mkDerivation, array, base, bmp, bytestring, comctl32, comdlg32 - , comonad, ConcurrentUtils, containers, gdi32, ghc-prim - , list-extras, monad-loops, monads-tf, parallel, random, time - , transformers, Win32, winspool + , comonad, concurrent-extra, ConcurrentUtils, containers, gdi32 + , ghc-prim, list-extras, monad-loops, monads-tf, parallel, random + , time, transformers, Win32, winspool }: mkDerivation { pname = "reactivity"; - version = "0.3.0.0"; - sha256 = "cc86376a74f88b58085252d37622b11917ed9808d07af3aacf86eca8ae31dd12"; + version = "0.3.1.0"; + sha256 = "fbf859a63d567967e912a000169edd39b95a271c0f614b334dc78101500f4f06"; libraryHaskellDepends = [ - array base bmp bytestring comonad ConcurrentUtils containers - ghc-prim list-extras monad-loops monads-tf parallel random time - transformers Win32 + array base bmp bytestring comonad concurrent-extra ConcurrentUtils + containers ghc-prim list-extras monad-loops monads-tf parallel + random time transformers Win32 ]; librarySystemDepends = [ comctl32 comdlg32 gdi32 winspool ]; homepage = "http://www.alkalisoftware.net/Reactivity.html"; @@ -177755,6 +178858,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "readshp" = callPackage + ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 + , filepath, monad-loops + }: + mkDerivation { + pname = "readshp"; + version = "0.1.0.0"; + sha256 = "354f8e8e649110d0da687dcadefe7145f03a7a9b2c0a752023fa9c9a55f6bc36"; + revision = "1"; + editedCabalFile = "c8fa843aeed4743a1f664a42097730dd4d5c8f8f7de06f8af26bdf09814efd57"; + libraryHaskellDepends = [ + base binary bytestring data-binary-ieee754 filepath monad-loops + ]; + description = "Code for reading ESRI Shapefiles"; + license = stdenv.lib.licenses.mit; + }) {}; + "really-simple-xml-parser" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -177805,8 +178925,8 @@ self: { }: mkDerivation { pname = "rebase"; - version = "0.5.2"; - sha256 = "a1181002cd0ac9d1cdad0f43095c4432bea5c19169534b99f6d1321f6a9928ab"; + version = "0.5.3"; + sha256 = "f5737cb4408b0bf1f19736fa8387d6e92f73d23c49f2455b530232f8f17b64fc"; libraryHaskellDepends = [ base base-prelude bifunctors bytestring containers contravariant contravariant-extras deepseq dlist either fail hashable mtl @@ -179241,6 +180361,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "regex-tdfa_1_2_2" = callPackage + ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl + , parsec, regex-base + }: + mkDerivation { + pname = "regex-tdfa"; + version = "1.2.2"; + sha256 = "cb12d675be7b31ed8086d8d022023d03eb553e55dbee6e1b7a4154933d471d39"; + libraryHaskellDepends = [ + array base bytestring containers ghc-prim mtl parsec regex-base + ]; + homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; + description = "Replaces/Enhances Text.Regex"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "regex-tdfa-pipes" = callPackage ({ mkDerivation, array, base, lens, monads-tf, pipes, regex-base , regex-tdfa @@ -179792,8 +180929,8 @@ self: { }: mkDerivation { pname = "relational-query"; - version = "0.8.1.0"; - sha256 = "9b84f39179751df082ad6706f388aa6cb340f000b6a01f8fae11138f9527fa62"; + version = "0.8.2.0"; + sha256 = "b7cf3a04b353413c21128dec79569dab465f92d42ad918cc55e44ffe03976735"; libraryHaskellDepends = [ array base bytestring containers dlist names-th persistable-record sql-words template-haskell text time time-locale-compat @@ -179832,8 +180969,8 @@ self: { }: mkDerivation { pname = "relational-record"; - version = "0.1.3.0"; - sha256 = "7f7cf98fce68186028315dade3bf33e8b4bfb57ad1af9c8397e1bd8a1b88e282"; + version = "0.1.4.0"; + sha256 = "e38b0ad61798e506ce7ab3bc3b7df3207f2f7cfc80b6d52b39e2281cd534a834"; libraryHaskellDepends = [ base persistable-types-HDBC-pg relational-query relational-query-HDBC @@ -181573,10 +182710,8 @@ self: { }: mkDerivation { pname = "rest-core"; - version = "0.38"; - sha256 = "b491b734c2d74729f427ca02370f12b839dd92347fea44b5fb66c66a39b11cec"; - revision = "2"; - editedCabalFile = "ed51d0cdb0e2562b3d3d03bc87c0da6d8da947ccec0f66307cf9455e82bd39dc"; + version = "0.39"; + sha256 = "d760d0547fc1a99cd949dde08b7945fb93af24f4e55d45ecf410c352d5005404"; libraryHaskellDepends = [ aeson aeson-utils base base-compat bytestring case-insensitive errors fclabels hxt hxt-pickle-utils json-schema mtl mtl-compat @@ -181593,24 +182728,23 @@ self: { }) {}; "rest-example" = callPackage - ({ mkDerivation, aeson, base, containers, generic-aeson - , generic-xmlpickler, hxt, json-schema, mtl, rest-core, rest-gen - , safe, stm, text, time, transformers, transformers-compat - , unordered-containers + ({ mkDerivation, aeson, base, base-compat, bytestring, containers + , generic-aeson, generic-xmlpickler, hxt, json-schema, mtl + , rest-core, rest-gen, safe, stm, text, time, transformers + , transformers-compat, unordered-containers }: mkDerivation { pname = "rest-example"; - version = "0.2.0.3"; - sha256 = "d71368418eca3128e887198f365b857011017e2515dd30856076b54d185b1a5e"; + version = "0.2.0.4"; + sha256 = "22cd99443ad2aa06616d5b47731c83c4650f2601eaedc0d799693752ca1e2832"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base containers generic-aeson generic-xmlpickler hxt - json-schema mtl rest-core safe stm text time transformers - transformers-compat unordered-containers + aeson base base-compat bytestring containers generic-aeson + generic-xmlpickler hxt json-schema mtl rest-core safe stm text time + transformers transformers-compat unordered-containers ]; - executableHaskellDepends = [ base rest-gen ]; - jailbreak = true; + executableHaskellDepends = [ base base-compat rest-gen ]; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; @@ -181996,10 +183130,8 @@ self: { }: mkDerivation { pname = "rest-gen"; - version = "0.19.0.2"; - sha256 = "12caa70e7b29b073cb0e066cf7d5c590b13e0fb5b2f924944cd1ae5217c79330"; - revision = "2"; - editedCabalFile = "e4e4528467c593e7cfc6ae2180bfa4a255097f1921a9daa70b46c48c0e84763a"; + version = "0.19.0.3"; + sha256 = "9ed4224ed8de81c56000b6814724bfed46f4e7b8890fe5892d308b6edcab2e76"; libraryHaskellDepends = [ aeson base base-compat blaze-html Cabal code-builder directory fclabels filepath hashable haskell-src-exts HStringTemplate hxt @@ -182088,7 +183220,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-happstack" = callPackage + "rest-happstack_0_3_1" = callPackage ({ mkDerivation, base, containers, happstack-server, mtl, rest-core , rest-gen, utf8-string }: @@ -182101,6 +183233,23 @@ self: { libraryHaskellDepends = [ base containers happstack-server mtl rest-core rest-gen utf8-string ]; + jailbreak = true; + description = "Rest driver for Happstack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-happstack" = callPackage + ({ mkDerivation, base, containers, happstack-server, mtl, rest-core + , rest-gen, utf8-string + }: + mkDerivation { + pname = "rest-happstack"; + version = "0.3.1.1"; + sha256 = "794f06eb2c96b995397e21f4578bd7094a20334f43883e97af81dbe60b394ff6"; + libraryHaskellDepends = [ + base containers happstack-server mtl rest-core rest-gen utf8-string + ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -182159,7 +183308,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-snap" = callPackage + "rest-snap_0_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, rest-core , safe, snap-core, unordered-containers, uri-encode, utf8-string }: @@ -182173,6 +183322,25 @@ self: { base bytestring case-insensitive rest-core safe snap-core unordered-containers uri-encode utf8-string ]; + jailbreak = true; + description = "Rest driver for Snap"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-snap" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , rest-core, safe, snap-core, unordered-containers, uri-encode + , utf8-string + }: + mkDerivation { + pname = "rest-snap"; + version = "0.2.0.1"; + sha256 = "24ff57b82808aac05a04d8b1e4ac24e5a2a71655991d95415d8a713533c402d5"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive rest-core safe + snap-core unordered-containers uri-encode utf8-string + ]; description = "Rest driver for Snap"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -182366,7 +183534,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-wai" = callPackage + "rest-wai_0_2" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, containers , http-types, mime-types, mtl, rest-core, text , unordered-containers, wai @@ -182381,6 +183549,25 @@ self: { base bytestring case-insensitive containers http-types mime-types mtl rest-core text unordered-containers wai ]; + jailbreak = true; + description = "Rest driver for WAI applications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-wai" = callPackage + ({ mkDerivation, base, base-compat, bytestring, case-insensitive + , containers, http-types, mime-types, mtl, rest-core, text + , unordered-containers, wai + }: + mkDerivation { + pname = "rest-wai"; + version = "0.2.0.1"; + sha256 = "38205eb7b85a4e052f11db099dd65e9d952b8533d1a35001f0b1958b443c0d02"; + libraryHaskellDepends = [ + base base-compat bytestring case-insensitive containers http-types + mime-types mtl rest-core text unordered-containers wai + ]; description = "Rest driver for WAI applications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -183093,6 +184280,37 @@ self: { license = "unknown"; }) {}; + "riak_1_0_1_0" = callPackage + ({ mkDerivation, aeson, attoparsec, base, binary, blaze-builder + , bytestring, containers, data-default-class, deepseq + , enclosed-exceptions, exceptions, hashable, HUnit + , mersenne-random-pure64, monad-control, mtl, network + , protocol-buffers, pureMD5, QuickCheck, random, random-shuffle + , resource-pool, riak-protobuf, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers, unordered-containers + , vector + }: + mkDerivation { + pname = "riak"; + version = "1.0.1.0"; + sha256 = "d851130b0e59c4e432c050349c5c288740b6b27cafddc719dccc6c36608f6bde"; + libraryHaskellDepends = [ + aeson attoparsec base binary blaze-builder bytestring containers + data-default-class deepseq enclosed-exceptions exceptions hashable + mersenne-random-pure64 monad-control network protocol-buffers + pureMD5 random random-shuffle resource-pool riak-protobuf + semigroups text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers data-default-class HUnit mtl QuickCheck + semigroups tasty tasty-hunit tasty-quickcheck text + ]; + homepage = "http://github.com/markhibberd/riak-haskell-client"; + description = "A Haskell client for the Riak decentralized data store"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "riak-protobuf_0_20_0_0" = callPackage ({ mkDerivation, array, base, parsec, protocol-buffers , protocol-buffers-descriptor @@ -184143,8 +185361,8 @@ self: { }: mkDerivation { pname = "rss-conduit"; - version = "0.2.0.1"; - sha256 = "c06317ac567f3a025bd5ba498837a64f0f045a3fa38e4ae36ca9ca76c4aafe3a"; + version = "0.2.0.2"; + sha256 = "304a2918743f7b65191ce8c4a57c94b1c3afb2692e5c79d6b0822a05be3294d1"; libraryHaskellDepends = [ base conduit conduit-parse containers exceptions foldl lens-simple mono-traversable parsers safe text time timerep uri-bytestring @@ -185339,8 +186557,8 @@ self: { }: mkDerivation { pname = "satchmo"; - version = "2.9.9.1"; - sha256 = "3414dcc5184cd34bce55eb041ff84f8985672964c64786d146b9520237ee13e2"; + version = "2.9.9.3"; + sha256 = "8a4dc9b233326e6742f7fe1e7d7d8c9fbc705b0341fe68908a26b2378ce2224f"; libraryHaskellDepends = [ array async base bytestring containers deepseq directory hashable lens memoize minisat mtl process transformers @@ -187924,6 +189142,8 @@ self: { pname = "semigroups"; version = "0.18.1"; sha256 = "ae7607fb2b497a53192c378dc84c00b45610fdc5de0ac8c1ac3234ec7acee807"; + revision = "1"; + editedCabalFile = "7dd2b3dcc9517705391c1c6a0b51eba1da605b554f9817255c4a1a1df4d4ae3d"; libraryHaskellDepends = [ base binary bytestring containers deepseq hashable tagged text transformers unordered-containers @@ -188668,7 +189888,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant" = callPackage + "servant_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-media, http-types, network-uri @@ -188692,6 +189912,34 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring + , bytestring-conversion, case-insensitive, directory, doctest + , filemanip, filepath, hspec, http-api-data, http-media, http-types + , network-uri, QuickCheck, quickcheck-instances, string-conversions + , text, url, vault + }: + mkDerivation { + pname = "servant"; + version = "0.6.1"; + sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring bytestring-conversion + case-insensitive http-api-data http-media http-types network-uri + string-conversions text vault + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring directory doctest filemanip + filepath hspec QuickCheck quickcheck-instances string-conversions + text url + ]; + doCheck = false; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant_0_7" = callPackage @@ -188737,6 +189985,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "servant-JuicyPixels"; license = stdenv.lib.licenses.gpl3; @@ -188759,6 +190008,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; @@ -188781,6 +190031,7 @@ self: { executableHaskellDepends = [ base JuicyPixels servant servant-server wai warp ]; + jailbreak = true; homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; @@ -188795,6 +190046,8 @@ self: { pname = "servant-JuicyPixels"; version = "0.3.0.2"; sha256 = "34ed22ef256d7ff3af3fff56484261448928f140b1b4287965619fe6b10b3ebd"; + revision = "1"; + editedCabalFile = "896414688b7da96443399f111448da3cb7861618eab516590dce96e394c744ea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188815,19 +190068,34 @@ self: { version = "0.4.4.6"; sha256 = "ef7ec4007b43679fd50133c097afb3ed33f64696fb44b03a281160384f693f91"; libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-blaze" = callPackage + "servant-blaze_0_4_4_7" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; version = "0.4.4.7"; sha256 = "5f3648d0831de475364c9570b527041d5a5a26ea6257b44f2e140509ba8c0b60"; libraryHaskellDepends = [ base blaze-html http-media servant ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "Blaze-html support for servant"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-blaze" = callPackage + ({ mkDerivation, base, blaze-html, http-media, servant }: + mkDerivation { + pname = "servant-blaze"; + version = "0.6.1"; + sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f"; + libraryHaskellDepends = [ base blaze-html http-media servant ]; homepage = "http://haskell-servant.github.io/"; description = "Blaze-html support for servant"; license = stdenv.lib.licenses.bsd3; @@ -188907,6 +190175,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188934,6 +190203,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188961,6 +190231,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -188988,6 +190259,7 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189015,13 +190287,14 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-client" = callPackage + "servant-client_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq , either, exceptions, hspec, http-client, http-client-tls , http-media, http-types, HUnit, network, network-uri, QuickCheck @@ -189042,6 +190315,36 @@ self: { http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-client" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, deepseq, exceptions, hspec, http-api-data + , http-client, http-client-tls, http-media, http-types, HUnit + , network, network-uri, QuickCheck, safe, servant, servant-server + , string-conversions, text, transformers, transformers-compat, wai + , warp + }: + mkDerivation { + pname = "servant-client"; + version = "0.6.1"; + sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring exceptions + http-api-data http-client http-client-tls http-media http-types + network-uri safe servant string-conversions text transformers + transformers-compat + ]; + testHaskellDepends = [ + aeson base bytestring deepseq hspec http-client http-media + http-types HUnit network QuickCheck servant servant-server text + transformers transformers-compat wai warp + ]; homepage = "http://haskell-servant.github.io/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189078,17 +190381,19 @@ self: { }) {}; "servant-csharp" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , haskell-src-exts, heredocs, http-types, lens, servant - , servant-foreign, text, time, uuid, uuid-types + ({ mkDerivation, aeson, base, bytestring, directory, filepath + , heredocs, http-types, lens, mtl, servant, servant-foreign + , servant-swagger, swagger2, text, time, unordered-containers, uuid + , uuid-types }: mkDerivation { pname = "servant-csharp"; - version = "0.0.7.1"; - sha256 = "98bb40bf02a4ed672fe50c1c5c90901e61ebe5ade8d639a1dfdee215ce1de4ff"; + version = "0.0.8.1"; + sha256 = "a715c53a3684f1e7f33d96f6b3fad006edfce6c029eb810d33647ffc180c097d"; libraryHaskellDepends = [ - base bytestring directory filepath haskell-src-exts heredocs - http-types lens servant servant-foreign text time uuid uuid-types + aeson base bytestring directory filepath heredocs http-types lens + mtl servant servant-foreign servant-swagger swagger2 text time + unordered-containers uuid uuid-types ]; jailbreak = true; homepage = "https://github.com/cutsea110/servant-csharp.git"; @@ -189142,6 +190447,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189171,6 +190477,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189200,6 +190507,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189229,6 +190537,7 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189258,13 +190567,14 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-docs" = callPackage + "servant-docs_0_4_4_7" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , case-insensitive, hashable, hspec, http-media, http-types, lens , servant, string-conversions, text, unordered-containers @@ -189287,6 +190597,37 @@ self: { testHaskellDepends = [ aeson base hspec lens servant string-conversions ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "generate API docs for your servant webservice"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-docs" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring + , bytestring-conversion, case-insensitive, control-monad-omega + , hashable, hspec, http-media, http-types, lens, servant + , string-conversions, text, unordered-containers + }: + mkDerivation { + pname = "servant-docs"; + version = "0.6.1"; + sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-pretty base bytestring bytestring-conversion + case-insensitive control-monad-omega hashable http-media http-types + lens servant string-conversions text unordered-containers + ]; + executableHaskellDepends = [ + aeson base bytestring-conversion lens servant string-conversions + text + ]; + testHaskellDepends = [ + aeson base hspec lens servant string-conversions + ]; homepage = "http://haskell-servant.github.io/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; @@ -189395,6 +190736,19 @@ self: { }) {}; "servant-foreign" = callPackage + ({ mkDerivation, base, hspec, http-types, lens, servant, text }: + mkDerivation { + pname = "servant-foreign"; + version = "0.6.1"; + sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324"; + libraryHaskellDepends = [ base http-types lens servant text ]; + testHaskellDepends = [ base hspec ]; + description = "Helpers for generating clients for servant APIs in any programming language"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-foreign_0_7" = callPackage ({ mkDerivation, base, hspec, http-types, lens, servant, text }: mkDerivation { pname = "servant-foreign"; @@ -189449,6 +190803,7 @@ self: { http-client-tls http-media http-types HUnit network QuickCheck servant servant-server text wai warp ]; + jailbreak = true; homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189493,6 +190848,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189517,6 +190873,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189541,6 +190898,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189565,6 +190923,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189589,6 +190948,7 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; @@ -189613,12 +190973,41 @@ self: { testHaskellDepends = [ base hspec hspec-expectations language-ecmascript lens servant ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; }) {}; "servant-js" = callPackage + ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec + , hspec-expectations, language-ecmascript, lens, servant + , servant-foreign, servant-server, stm, text, transformers, warp + }: + mkDerivation { + pname = "servant-js"; + version = "0.6.1"; + sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat charset lens servant-foreign text + ]; + executableHaskellDepends = [ + aeson base filepath lens servant servant-server stm transformers + warp + ]; + testHaskellDepends = [ + base base-compat hspec hspec-expectations language-ecmascript lens + servant text + ]; + homepage = "http://haskell-servant.github.io/"; + description = "Automatically derive javascript functions to query servant webservices"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-js_0_7" = callPackage ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec , hspec-expectations, language-ecmascript, lens, servant , servant-foreign, servant-server, stm, text, transformers, warp @@ -189661,13 +191050,14 @@ self: { }) {}; "servant-mock" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-types, QuickCheck - , servant, servant-server, transformers, wai, warp + ({ mkDerivation, aeson, base, bytestring, bytestring-conversion + , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server + , transformers, wai, warp }: mkDerivation { pname = "servant-mock"; - version = "0.4.4.7"; - sha256 = "d8fdc27bc4bc347d1fc31e125c29f0d786e44abc567a7187b757d0c6563d75c0"; + version = "0.6.1"; + sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -189677,6 +191067,10 @@ self: { executableHaskellDepends = [ aeson base QuickCheck servant-server warp ]; + testHaskellDepends = [ + aeson base bytestring-conversion hspec hspec-wai QuickCheck servant + servant-server wai + ]; homepage = "http://github.com/haskell-servant/servant"; description = "Derive a mock server for free from your servant API types"; license = stdenv.lib.licenses.bsd3; @@ -190047,7 +191441,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-server" = callPackage + "servant-server_0_4_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , bytestring-conversion, directory, doctest, either, exceptions , filemanip, filepath, hspec, hspec-wai, http-types, mmorph, mtl @@ -190073,6 +191467,43 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; + homepage = "http://haskell-servant.github.io/"; + description = "A family of combinators for defining webservices APIs and serving them"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-server" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat + , base64-bytestring, bytestring, bytestring-conversion, containers + , directory, doctest, exceptions, filemanip, filepath, hspec + , hspec-wai, http-api-data, http-types, mmorph, mtl, network + , network-uri, parsec, QuickCheck, safe, servant + , should-not-typecheck, split, string-conversions, system-filepath + , temporary, text, transformers, transformers-compat, wai + , wai-app-static, wai-extra, warp, word8 + }: + mkDerivation { + pname = "servant-server"; + version = "0.6.1"; + sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base-compat base64-bytestring bytestring + containers filepath http-api-data http-types mmorph mtl network + network-uri safe servant split string-conversions system-filepath + text transformers transformers-compat wai wai-app-static warp word8 + ]; + executableHaskellDepends = [ aeson base servant text wai warp ]; + testHaskellDepends = [ + aeson base base-compat base64-bytestring bytestring + bytestring-conversion directory doctest exceptions filemanip + filepath hspec hspec-wai http-types mtl network parsec QuickCheck + safe servant should-not-typecheck string-conversions temporary text + transformers transformers-compat wai wai-extra warp + ]; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -190195,8 +191626,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "5"; - editedCabalFile = "49eac863eece8a51ed250931103972dae2bf1551a4d6cb5d55c5d4ae65cb24b3"; + revision = "6"; + editedCabalFile = "a9fa85d3e31c0057aa1144044436cc833a1a46165760b03e00e4c23bce578cb0"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -191462,6 +192893,7 @@ self: { libraryHaskellDepends = [ base bytestring css-text hjsmin shake text ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/shake-minify"; description = "Shake Minify Rules"; license = stdenv.lib.licenses.bsd3; @@ -191785,7 +193217,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_8_1" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -191808,10 +193240,11 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare_2_0_8_2" = callPackage + "shakespeare" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -191834,7 +193267,6 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -192440,7 +193872,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly" = callPackage + "shelly_1_6_5" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -192469,9 +193901,10 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shelly_1_6_6" = callPackage + "shelly" = callPackage ({ mkDerivation, async, base, bytestring, containers, directory , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async , lifted-base, monad-control, mtl, process, system-fileio @@ -192499,7 +193932,6 @@ self: { homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shelly-extra" = callPackage @@ -193741,6 +195173,8 @@ self: { pname = "simplex-basic"; version = "0.0.0.1"; sha256 = "f8a30128d4e16714f75fee3b16fd3d4b24832a30f17ff29936a1c5a066b60ba0"; + revision = "1"; + editedCabalFile = "5f5008bcffb4338739343d6ab9e7f47e0d1c35ec5d606dbdbb9f02943de2b7a1"; libraryHaskellDepends = [ base bifunctors linear-grammar mtl QuickCheck transformers ]; @@ -194969,6 +196403,7 @@ self: { aeson base either lens servant servant-client servant-docs text time ]; + jailbreak = true; homepage = "https://github.com/GetShopTV/smsaero"; description = "SMSAero API and HTTP client based on servant library"; license = stdenv.lib.licenses.bsd3; @@ -197379,8 +198814,8 @@ self: { }: mkDerivation { pname = "solr"; - version = "0.3"; - sha256 = "7cc47e9998197624cb78adb5bec4dabec4febf11cda876cecac56dd0a4d5ef66"; + version = "0.3.1"; + sha256 = "9bee7a32661231a132491cf361140d40d3a810bd72763abebcee97bfbdd06e66"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder case-insensitive contravariant http-client http-response-decoder json-encoder @@ -197746,6 +199181,28 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "sparkle" = callPackage + ({ mkDerivation, base, binary, bytestring, distributed-closure + , filepath, inline-java, process, regex-tdfa, singletons, text + , vector, zip-archive + }: + mkDerivation { + pname = "sparkle"; + version = "0.1"; + sha256 = "91e7c8309028201b55d0174b0f6882ada77c41ae4ede94ffc422c48b80c68fb2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring distributed-closure inline-java singletons + text vector + ]; + executableHaskellDepends = [ + base bytestring filepath process regex-tdfa text zip-archive + ]; + description = "Distributed Apache Spark applications in Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sparse" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant , deepseq, directory, doctest, filepath, hlint, hybrid-vectors @@ -198330,6 +199787,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "split_0_2_3_1" = callPackage + ({ mkDerivation, base, QuickCheck }: + mkDerivation { + pname = "split"; + version = "0.2.3.1"; + sha256 = "7615b60adee20c19ddafd9d74456e8fe8e4274e2c676a5e858511b664205c688"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base QuickCheck ]; + description = "Combinator library for splitting lists"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "split-channel" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -198664,10 +200134,8 @@ self: { ({ mkDerivation, base, QuickCheck, quickcheck-simple }: mkDerivation { pname = "sql-words"; - version = "0.1.3.1"; - sha256 = "c9ce5f8402cdfc610e3d58774ad5c3aedaa6f4d0e7724937ecd97a654351b59d"; - revision = "1"; - editedCabalFile = "6de32c6b306d3b438564e263deb20c68698a5cdaa198a3d711ee768954608e17"; + version = "0.1.4.0"; + sha256 = "4ae839c4e1d47d2cd6a6b06ff8301473bcf12cbc5b3efa5fa59e1300797b1716"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base QuickCheck quickcheck-simple ]; homepage = "http://khibino.github.io/haskell-relational-record/"; @@ -199817,8 +201285,8 @@ self: { pname = "stack"; version = "1.0.4.3"; sha256 = "2a445ff671cfd75ccf3185c52832298598dc03dbfbede2b7be21237f63c305b2"; - revision = "2"; - editedCabalFile = "a2cedd499125c5380a6f2e7f7a57c6b67e330e07ecd5e95114b83cefe7975e3f"; + revision = "4"; + editedCabalFile = "a1315a0d9d005e7e93d6c0893eec2f2d055dda364543edf7b9e172c8d54d7ae2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -200866,7 +202334,7 @@ self: { license = "GPL"; }) {}; - "stateWriter" = callPackage + "stateWriter_0_2_6" = callPackage ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers }: mkDerivation { @@ -200877,9 +202345,10 @@ self: { testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stateWriter_0_2_7" = callPackage + "stateWriter" = callPackage ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers }: mkDerivation { @@ -200890,7 +202359,6 @@ self: { testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statechart" = callPackage @@ -202063,6 +203531,7 @@ self: { sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; libraryHaskellDepends = [ base clock transformers ]; testHaskellDepends = [ base clock hspec ]; + jailbreak = true; homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; @@ -202746,7 +204215,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons" = callPackage + "streaming-commons_0_1_15_2" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -202766,9 +204235,10 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons_0_1_15_4" = callPackage + "streaming-commons" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -202788,7 +204258,6 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming-histogram" = callPackage @@ -206227,6 +207696,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "table-layout" = callPackage + ({ mkDerivation, base, data-default-class + , data-default-instances-base, hspec, HUnit, QuickCheck + }: + mkDerivation { + pname = "table-layout"; + version = "0.5.1.1"; + sha256 = "11c47bed5d8c6dd6d003dad96f80ad9e6a5bcc0566aefd8ff97afa3889950b11"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base data-default-class data-default-instances-base + ]; + executableHaskellDepends = [ + base data-default-class data-default-instances-base + ]; + testHaskellDepends = [ + base data-default-class data-default-instances-base hspec HUnit + QuickCheck + ]; + homepage = "https://github.com/muesli4/table-layout"; + description = "Layout text as grid or table"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "table-tennis" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -206470,7 +207964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagged" = callPackage + "tagged_0_8_3" = callPackage ({ mkDerivation, base, deepseq, template-haskell }: mkDerivation { pname = "tagged"; @@ -206480,9 +207974,10 @@ self: { 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_0_8_4" = callPackage + "tagged" = callPackage ({ mkDerivation, base, deepseq, template-haskell }: mkDerivation { pname = "tagged"; @@ -206492,7 +207987,6 @@ self: { 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 @@ -206853,6 +208347,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tai64" = callPackage + ({ mkDerivation, attoparsec, base, base16-bytestring, binary + , bytestring, doctest, QuickCheck, text, time, vector + }: + mkDerivation { + pname = "tai64"; + version = "0.1.0.3"; + sha256 = "9ac6b2e3130bd5c61b62a30601d4f59e64b659065c23d99d27e8dcb594b8c83b"; + libraryHaskellDepends = [ + attoparsec base base16-bytestring binary bytestring QuickCheck text + time vector + ]; + testHaskellDepends = [ base doctest ]; + homepage = "https://github.com/kim/tai64"; + description = "Tai64 Labels for Haskell"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "takahashi" = callPackage ({ mkDerivation, base, lens, monad-skeleton, mtl }: mkDerivation { @@ -207074,7 +208586,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tar" = callPackage + "tar_0_5_0_1" = callPackage ({ mkDerivation, array, base, bytestring, bytestring-handle , containers, deepseq, directory, filepath, QuickCheck, tasty , tasty-quickcheck, time @@ -207092,9 +208604,30 @@ self: { ]; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tardis" = callPackage + "tar" = callPackage + ({ mkDerivation, array, base, bytestring, bytestring-handle + , containers, deepseq, directory, filepath, QuickCheck, tasty + , tasty-quickcheck, time + }: + mkDerivation { + pname = "tar"; + version = "0.5.0.2"; + sha256 = "777b2410653632ee4f727df49b1829b3688e5f76bcdd04c6f3962a06566a0e18"; + libraryHaskellDepends = [ + array base bytestring containers deepseq directory filepath time + ]; + testHaskellDepends = [ + array base bytestring bytestring-handle containers deepseq + directory filepath QuickCheck tasty tasty-quickcheck time + ]; + description = "Reading, writing and manipulating \".tar\" archive files."; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "tardis_0_3_0_0" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "tardis"; @@ -207104,6 +208637,19 @@ self: { homepage = "https://github.com/DanBurton/tardis"; description = "Bidirectional state monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tardis" = callPackage + ({ mkDerivation, base, mmorph, mtl }: + mkDerivation { + pname = "tardis"; + version = "0.4.1.0"; + sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; + libraryHaskellDepends = [ base mmorph mtl ]; + homepage = "https://github.com/DanBurton/tardis"; + description = "Bidirectional state monad transformer"; + license = stdenv.lib.licenses.bsd3; }) {}; "target" = callPackage @@ -207277,7 +208823,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty" = callPackage + "tasty_0_11_0_2" = callPackage ({ mkDerivation, ansi-terminal, async, base, clock, containers , deepseq, mtl, optparse-applicative, regex-tdfa-rc, stm, tagged , unbounded-delays @@ -207293,6 +208839,25 @@ self: { homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty" = callPackage + ({ mkDerivation, ansi-terminal, async, base, clock, containers + , deepseq, mtl, optparse-applicative, regex-tdfa, stm, tagged + , unbounded-delays + }: + mkDerivation { + pname = "tasty"; + version = "0.11.0.3"; + sha256 = "ca51533c3b6fb36a63b7a6062d71024e3a823ae173779c1c81850959e29e7efa"; + libraryHaskellDepends = [ + ansi-terminal async base clock containers deepseq mtl + optparse-applicative regex-tdfa stm tagged unbounded-delays + ]; + homepage = "http://documentup.com/feuerbach/tasty"; + description = "Modern and extensible testing framework"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-ant-xml_1_0_1" = callPackage @@ -207331,13 +208896,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tasty-dejafu" = callPackage + "tasty-dejafu_0_2_0_0" = callPackage ({ mkDerivation, base, dejafu, tasty }: mkDerivation { pname = "tasty-dejafu"; version = "0.2.0.0"; sha256 = "cba0315e6c6b2946ada0e48ea6f443f20bc8421810b0c334d1b095be0d1453ae"; libraryHaskellDepends = [ base dejafu tasty ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the Tasty test framework"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-dejafu" = callPackage + ({ mkDerivation, base, dejafu, tagged, tasty }: + mkDerivation { + pname = "tasty-dejafu"; + version = "0.3.0.0"; + sha256 = "ab6c83eadf59c4a1f6f302694dbff61c7c9dc398c66d83c8b8eec161b84c3c62"; + libraryHaskellDepends = [ base dejafu tagged tasty ]; homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the Tasty test framework"; license = stdenv.lib.licenses.mit; @@ -209256,7 +210835,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "testing-feat" = callPackage + "testing-feat_0_4_0_2" = callPackage ({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell }: mkDerivation { @@ -209270,9 +210849,10 @@ self: { ]; description = "Functional Enumeration of Algebraic Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "testing-feat_0_4_0_3" = callPackage + "testing-feat" = callPackage ({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell }: mkDerivation { @@ -209284,7 +210864,6 @@ self: { ]; description = "Functional Enumeration of Algebraic Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testing-type-modifiers" = callPackage @@ -209702,7 +211281,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_6_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -209724,9 +211303,10 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath_0_8_6_2" = callPackage + "texmath" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -209748,7 +211328,6 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texrunner" = callPackage @@ -210420,8 +211999,8 @@ self: { }: mkDerivation { pname = "text-show-instances"; - version = "3.2"; - sha256 = "8362074b2e81eca771356f43dc01e5647a9518291987da76d75810346d0f1e1e"; + version = "3.2.1"; + sha256 = "33433b9d15d43254e1dbca31fdf226579a77c8c12e98e76a29a566703a000c68"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -211279,7 +212858,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-reify-many" = callPackage + "th-reify-many_0_1_4" = callPackage ({ mkDerivation, base, containers, mtl, safe, template-haskell , th-expand-syns }: @@ -211294,6 +212873,24 @@ self: { homepage = "http://github.com/mgsloan/th-reify-many"; description = "Recurseively reify template haskell datatype info"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "th-reify-many" = callPackage + ({ mkDerivation, base, containers, mtl, safe, template-haskell + , th-expand-syns + }: + mkDerivation { + pname = "th-reify-many"; + version = "0.1.4.1"; + sha256 = "b087a6e532de9350c140e364d43fe07e6f42c14625646c309aef67ef6391ea7f"; + libraryHaskellDepends = [ + base containers mtl safe template-haskell th-expand-syns + ]; + testHaskellDepends = [ base template-haskell ]; + homepage = "http://github.com/mgsloan/th-reify-many"; + description = "Recurseively reify template haskell datatype info"; + license = stdenv.lib.licenses.bsd3; }) {}; "th-sccs" = callPackage @@ -211556,8 +213153,10 @@ self: { ({ mkDerivation, atomic-primops, base, containers }: mkDerivation { pname = "thread-local-storage"; - version = "0.1.0.3"; - sha256 = "74ccc31b79a3a0b087b654185ddafc42ac4609846213c670495f70fd7bee464d"; + version = "0.1.0.4"; + sha256 = "3e87f35f3cabfedbd39810f33b7b167832aac008f4f458a2b2411349506b8239"; + revision = "1"; + editedCabalFile = "3bba7e8933033aa92c2767ccee383d84cc36a791773aff56d51ea95ecf12d90f"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ atomic-primops base containers ]; description = "Several options for thread-local-storage (TLS) in Haskell"; @@ -212484,7 +214083,6 @@ self: { version = "0.1.0"; sha256 = "dee2b3f214f36c6fb3f6d4d0a73954485404b7535965cb59ab1715fb17b9dcae"; libraryHaskellDepends = [ base clock timelike transformers ]; - jailbreak = true; homepage = "http://hub.darcs.net/esz/timelike-clock"; description = "Timelike interface for the clock library"; license = stdenv.lib.licenses.asl20; @@ -213747,8 +215345,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "total-map"; - version = "0.0.4"; - sha256 = "282de643c4b34e1a5eabc89a0c1c4b1c62637626a1f9b4ea567fd40e71dc5cbe"; + version = "0.0.5"; + sha256 = "c7392d06e1c5ed4b1219eda838aaa0e2a7befcb3650765f1e87e86533d2195d3"; libraryHaskellDepends = [ base containers ]; homepage = "http://github.com/conal/total-map/"; description = "Finitely represented /total/ maps"; @@ -214212,7 +215810,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "transformers-lift" = callPackage + "transformers-lift_0_1_0_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "transformers-lift"; @@ -214221,6 +215819,18 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Ad-hoc type classes for lifting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "transformers-lift" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "transformers-lift"; + version = "0.1.0.1"; + sha256 = "c29d11f58fb9b2c1011c162f8f9f98cb0f2d12ca1317f40f4c88d9881840aa74"; + libraryHaskellDepends = [ base transformers ]; + description = "Ad-hoc type classes for lifting"; + license = stdenv.lib.licenses.bsd3; }) {}; "transformers-runnable" = callPackage @@ -215445,7 +217055,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "turtle_1_2_6" = callPackage ({ mkDerivation, async, base, clock, directory, doctest, foldl , hostname, managed, optional-args, optparse-applicative, process , stm, system-fileio, system-filepath, temporary, text, time @@ -215461,6 +217071,28 @@ 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; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.7"; + sha256 = "45736cf5106e75808eaed098228309bcfa3eb8b5e7e956c28423002ca5232f98"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -216469,8 +218101,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "type-fun"; - version = "0.0.1"; - sha256 = "bc21ad690809ffad66ebaf9df7af07e5609b026fbd257b813228d1b3ea141a1f"; + version = "0.1.0"; + sha256 = "8ad17ecf12c7034eefe1e22d0cff29a4c52cf9b326dd1ccb2b87d18a6240c101"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; homepage = "https://github.com/s9gf4ult/type-fun"; @@ -217120,7 +218752,7 @@ self: { license = "GPL"; }) {}; - "tz" = callPackage + "tz_0_1_0_1" = callPackage ({ mkDerivation, base, binary, bindings-posix, bytestring , containers, deepseq, HUnit, QuickCheck, template-haskell , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -217144,10 +218776,36 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tz" = callPackage + ({ mkDerivation, base, binary, bindings-posix, bytestring + , containers, data-default, deepseq, HUnit, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th, time, tzdata, unix + , vector + }: + mkDerivation { + pname = "tz"; + version = "0.1.1.0"; + sha256 = "a9fbbf3979e8a46cddbbaf4f1c1d58c3d8ceefb664a628b74420c3d4d1cdc177"; + libraryHaskellDepends = [ + base binary bytestring containers data-default deepseq + template-haskell time tzdata vector + ]; + testHaskellDepends = [ + base bindings-posix HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 test-framework-th + time tzdata unix vector + ]; + homepage = "https://github.com/nilcons/haskell-tz"; + description = "Efficient time zone handling"; + license = stdenv.lib.licenses.asl20; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "tzdata" = callPackage + "tzdata_0_1_20150810_0" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, directory , filemanip, filepath, HUnit, MissingH, test-framework , test-framework-hunit, test-framework-th, unix, vector @@ -217166,6 +218824,28 @@ self: { homepage = "https://github.com/nilcons/haskell-tzdata"; description = "Time zone database (as files and as a module)"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tzdata" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, HUnit + , test-framework, test-framework-hunit, test-framework-th, unix + , vector + }: + mkDerivation { + pname = "tzdata"; + version = "0.1.20160417.0"; + sha256 = "97a1ff59343eb1fa0f1ff81f6d3235c898c7a2f64112c169fce0fa1dbf6a3309"; + libraryHaskellDepends = [ + base bytestring containers deepseq vector + ]; + testHaskellDepends = [ + base bytestring HUnit test-framework test-framework-hunit + test-framework-th unix + ]; + homepage = "https://github.com/nilcons/haskell-tzdata"; + description = "Time zone database (as files and as a module)"; + license = stdenv.lib.licenses.asl20; }) {}; "uAgda" = callPackage @@ -218027,19 +219707,6 @@ self: { }) {}; "union" = callPackage - ({ mkDerivation, base, lens, vinyl }: - mkDerivation { - pname = "union"; - version = "0.1.0.0"; - sha256 = "a1a3cd3959ce688656c75bf905fb7ba98ade43da2154dfb52879ac89ecda5625"; - revision = "1"; - editedCabalFile = "b727e5c9325d1672d30a1da433ddd1314775d7b50d2148713f419e524444ed79"; - libraryHaskellDepends = [ base lens vinyl ]; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "union_0_1_1_0" = callPackage ({ mkDerivation, base, deepseq, profunctors, tagged, vinyl }: mkDerivation { pname = "union"; @@ -218048,7 +219715,6 @@ self: { libraryHaskellDepends = [ base deepseq profunctors tagged vinyl ]; description = "Extensible type-safe unions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "union-find" = callPackage @@ -221078,6 +222744,21 @@ self: { license = "LGPL"; }) {}; + "vcatt" = callPackage + ({ mkDerivation, base, extra, shelly, system-filepath, text }: + mkDerivation { + pname = "vcatt"; + version = "0.1"; + sha256 = "112d3f025c34de3c56c4da8b8ab12699821171d7c5ef2d38b2b8f4e1af693e98"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base extra shelly system-filepath ]; + executableHaskellDepends = [ base shelly text ]; + homepage = "http://github.com/bergey/vcatt"; + description = "Recursively check that a directory is under version control"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "vcd" = callPackage ({ mkDerivation, base, polyparse }: mkDerivation { @@ -221430,7 +223111,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances" = callPackage + "vector-binary-instances_0_2_3_1" = callPackage ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -221441,9 +223122,10 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-binary-instances_0_2_3_2" = callPackage + "vector-binary-instances" = callPackage ({ mkDerivation, base, binary, tasty, tasty-quickcheck, vector }: mkDerivation { pname = "vector-binary-instances"; @@ -221454,7 +223136,6 @@ self: { homepage = "https://github.com/bos/vector-binary-instances"; description = "Instances of Data.Binary and Data.Serialize for vector"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-buffer" = callPackage @@ -221906,7 +223587,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_5" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -221918,9 +223599,10 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox_0_2_1_6" = callPackage + "vector-th-unbox" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -221930,7 +223612,6 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "verbalexpressions" = callPackage @@ -222011,16 +223692,16 @@ self: { }) {}; "versions" = callPackage - ({ mkDerivation, base, either, extra, parsec, semigroups, tasty - , tasty-hunit, text, text-show + ({ mkDerivation, base, either, megaparsec, microlens, semigroups + , tasty, tasty-hunit, text }: mkDerivation { pname = "versions"; - version = "1.0.2"; - sha256 = "739275e9d1d286786c2b9f62c1aa96beebb28912005e80f37acb56048ae6dc9e"; - libraryHaskellDepends = [ base parsec semigroups text ]; + version = "2.0.0"; + sha256 = "d8e18c140295e45e6b4f9c103c0c9d953a3baa769a0a364648074ad91623b7d2"; + libraryHaskellDepends = [ base megaparsec semigroups text ]; testHaskellDepends = [ - base either extra semigroups tasty tasty-hunit text text-show + base either microlens tasty tasty-hunit text ]; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; @@ -224246,7 +225927,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-extra" = callPackage + "wai-extra_3_0_15" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, fast-logger, hspec @@ -224275,6 +225956,36 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.15.1"; + sha256 = "6474f70915bfd9342ec126a3de76c6247e0788deb553fc46e1ba72c1f0f8e4ad"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; }) {}; "wai-frontend-monadcgi" = callPackage @@ -224379,7 +226090,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-handler-launch" = callPackage + "wai-handler-launch_3_0_0_5" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , process, streaming-commons, transformers, wai, warp }: @@ -224393,9 +226104,10 @@ self: { ]; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-handler-launch_3_0_1" = callPackage + "wai-handler-launch" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, http-types , process, streaming-commons, transformers, wai, warp }: @@ -224409,7 +226121,6 @@ self: { ]; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-scgi" = callPackage @@ -224597,7 +226308,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-logger" = callPackage + "wai-logger_2_2_5" = callPackage ({ mkDerivation, auto-update, base, blaze-builder, byteorder , bytestring, case-insensitive, doctest, easy-file, fast-logger , http-types, network, unix, unix-time, wai @@ -224615,9 +226326,10 @@ self: { doCheck = false; description = "A logging system for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-logger_2_2_7" = callPackage + "wai-logger" = callPackage ({ mkDerivation, base, blaze-builder, byteorder, bytestring , case-insensitive, doctest, fast-logger, http-types, network, unix , unix-time, wai @@ -224631,10 +226343,9 @@ self: { fast-logger http-types network unix unix-time wai ]; testHaskellDepends = [ base doctest ]; - jailbreak = true; + doCheck = false; description = "A logging system for WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger-prefork" = callPackage @@ -228233,7 +229944,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular" = callPackage + "webdriver-angular_0_1_9" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -228250,13 +229961,15 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; + jailbreak = true; doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver-angular_0_1_10" = callPackage + "webdriver-angular" = callPackage ({ mkDerivation, aeson, base, hspec, hspec-webdriver , language-javascript, template-haskell, text, transformers , unordered-containers, wai-app-static, warp, webdriver @@ -228273,11 +229986,10 @@ self: { base hspec hspec-webdriver transformers wai-app-static warp webdriver ]; - jailbreak = true; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Webdriver actions to assist with testing a webpage which uses Angular.Js"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webdriver-snoy" = callPackage @@ -228886,35 +230598,6 @@ self: { }) {}; "werewolf" = callPackage - ({ mkDerivation, aeson, base, containers, directory, extra - , filepath, lens, MonadRandom, mtl, optparse-applicative - , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text - , tostring, transformers - }: - mkDerivation { - pname = "werewolf"; - version = "1.0.1.0"; - sha256 = "62394b709d0c7b119cabc0fedb42f279d2b5fba49c69990c61d9051f70260f66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers directory extra filepath lens MonadRandom mtl - text tostring transformers - ]; - executableHaskellDepends = [ - aeson base directory extra filepath lens MonadRandom mtl - optparse-applicative random-shuffle text transformers - ]; - testHaskellDepends = [ - base containers extra lens MonadRandom mtl QuickCheck tasty - tasty-quickcheck text - ]; - homepage = "https://github.com/hjwylde/werewolf"; - description = "A game engine for playing werewolf within an arbitrary chat client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "werewolf_1_0_2_0" = callPackage ({ mkDerivation, aeson, base, containers, directory, extra , filepath, lens, MonadRandom, mtl, optparse-applicative , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text @@ -228922,8 +230605,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "1.0.2.0"; - sha256 = "d0ba1281ff4753b2e4c2c52136e846e3aaf0ca1170bccf30407a42a7c2c42677"; + version = "1.0.2.2"; + sha256 = "ef55f17c0d3a49f1135e9691d1cf29dbd0b538c4ef941b20f2f7ca7fd407fa81"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -228941,7 +230624,6 @@ self: { homepage = "https://github.com/hjwylde/werewolf"; description = "A game engine for playing werewolf within an arbitrary chat client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "werewolf-slack" = callPackage @@ -228951,10 +230633,8 @@ self: { }: mkDerivation { pname = "werewolf-slack"; - version = "1.0.0.0"; - sha256 = "882eaeba0d24555265601da806ca89a9e5ee313a850f59dcbc8de6418f80a407"; - revision = "2"; - editedCabalFile = "c45c8d29405ce51049a2a72dbca21ae974d7c05c1fa966d469b06bc532b9dbfa"; + version = "1.0.1.0"; + sha256 = "fb3e1fdb51117c23b4edb0c0022b36e26cddbc04da280b85481af18a097ab6e1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -229638,7 +231318,7 @@ self: { "wolf" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , amazonka-swf, base, basic-prelude, bytestring, conduit + , amazonka-swf, async, base, basic-prelude, bytestring, conduit , conduit-extra, exceptions, fast-logger, formatting, http-conduit , http-types, lens, monad-control, monad-logger, mtl, mtl-compat , optparse-applicative, resourcet, safe, shelly, system-filepath @@ -229647,8 +231327,8 @@ self: { }: mkDerivation { pname = "wolf"; - version = "0.2.3"; - sha256 = "53c53f00ccc4ad27efc9164d90722174d28f7bad1850a1659f177d9c4d070fd3"; + version = "0.2.6"; + sha256 = "523b4ba7d885207bdb860a2a9106c7dfd37911084d9780ea21f481ad51281bb6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -229660,7 +231340,7 @@ self: { yaml ]; executableHaskellDepends = [ - aeson amazonka-core base basic-prelude bytestring + aeson amazonka-core async base basic-prelude bytestring optparse-applicative resourcet shelly system-filepath text transformers yaml zlib ]; @@ -230971,8 +232651,8 @@ self: { }: mkDerivation { pname = "xcffib"; - version = "0.4.1"; - sha256 = "c5449a61a2415f0be39ca4b1be2b186e2eb0f1563391d819b555a348f35f5248"; + version = "0.4.2"; + sha256 = "ccaafda9d2e55fb079e5f2bcac74264a0c3c97f6488b49f8a81eae9a66e556b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -233173,7 +234853,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xss-sanitize" = callPackage + "xss-sanitize_0_3_5_6" = callPackage ({ mkDerivation, attoparsec, base, containers, css-text, hspec , HUnit, network-uri, tagsoup, text, utf8-string }: @@ -233192,9 +234872,10 @@ self: { homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; description = "sanitize untrusted HTML to prevent XSS attacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xss-sanitize_0_3_5_7" = callPackage + "xss-sanitize" = callPackage ({ mkDerivation, attoparsec, base, containers, css-text, hspec , HUnit, network-uri, tagsoup, text, utf8-string }: @@ -233213,7 +234894,6 @@ self: { homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; description = "sanitize untrusted HTML to prevent XSS attacks"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xtc" = callPackage @@ -235041,7 +236721,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_13_1" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -235068,9 +236748,39 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-account" = callPackage + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.13.2"; + sha256 = "65d4cdc979db56e766aef3f64183075f4976ddedb8e62b07efb09be56f2cca20"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; + }) {}; + + "yesod-auth-account_1_4_1" = callPackage ({ mkDerivation, base, blaze-html, bytestring, hspec, monad-logger , mtl, nonce, persistent, persistent-sqlite, pwstore-fast , resourcet, text, xml-conduit, yesod, yesod-auth, yesod-core @@ -235091,6 +236801,30 @@ self: { homepage = "https://bitbucket.org/wuzzeb/yesod-auth-account"; description = "An account authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-account" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, hspec, monad-logger + , mtl, nonce, persistent, persistent-sqlite, pwstore-fast + , resourcet, text, xml-conduit, yesod, yesod-auth, yesod-core + , yesod-form, yesod-persistent, yesod-test + }: + mkDerivation { + pname = "yesod-auth-account"; + version = "1.4.2"; + sha256 = "38d5c5795a6acb487f408b0bd7ab3fd874f3d99c5df94202dcbb436847e7eef3"; + libraryHaskellDepends = [ + base blaze-html bytestring mtl nonce persistent pwstore-fast text + yesod-auth yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ + base bytestring hspec monad-logger mtl persistent-sqlite resourcet + text xml-conduit yesod yesod-auth yesod-test + ]; + homepage = "https://bitbucket.org/wuzzeb/yesod-auth-account"; + description = "An account authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-account-fork" = callPackage @@ -235316,7 +237050,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb" = callPackage + "yesod-auth-hashdb_1_4_3" = callPackage ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent , pwstore-fast, text, yesod-auth, yesod-core, yesod-form , yesod-persistent @@ -235333,26 +237067,32 @@ self: { homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb_1_5" = callPackage - ({ mkDerivation, base, bytestring, cryptohash, hspec, persistent - , pwstore-fast, text, yesod-auth, yesod-core, yesod-form - , yesod-persistent + "yesod-auth-hashdb" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, containers + , cryptohash, hspec, http-conduit, http-types, monad-logger + , network-uri, persistent, persistent-sqlite, pwstore-fast + , resourcet, text, wai-extra, yesod, yesod-auth, yesod-core + , yesod-form, yesod-persistent, yesod-test }: mkDerivation { pname = "yesod-auth-hashdb"; - version = "1.5"; - sha256 = "396fbe836c291d9d1dce70c18ce39f82671a7e40af3fc743efb14a7faefb7259"; + version = "1.5.1"; + sha256 = "fb69116768ae46b0ba582e91151438fd9f89daf0fbcfb5fc534058798552d2fe"; libraryHaskellDepends = [ base bytestring cryptohash persistent pwstore-fast text yesod-auth yesod-core yesod-form yesod-persistent ]; - testHaskellDepends = [ base hspec text ]; + testHaskellDepends = [ + base bytestring classy-prelude containers hspec http-conduit + http-types monad-logger network-uri persistent-sqlite resourcet + text wai-extra yesod yesod-auth yesod-core yesod-test + ]; homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-kerberos" = callPackage @@ -235467,8 +237207,8 @@ self: { }: mkDerivation { pname = "yesod-auth-oauth"; - version = "1.4.1"; - sha256 = "6046eceb32cbd852c9737a8f09e25c0609296373bd4974bb256ba9dc2e7b48c8"; + version = "1.4.1.1"; + sha256 = "2dd9eda01b3b7625711b0a1dafce82915e82154976cd94c6076c8fa929d80773"; libraryHaskellDepends = [ authenticate-oauth base bytestring lifted-base text transformers yesod-auth yesod-core yesod-form @@ -236795,7 +238535,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-bin" = callPackage + "yesod-bin_1_4_18" = callPackage ({ mkDerivation, async, attoparsec, base, base64-bytestring , blaze-builder, bytestring, Cabal, conduit, conduit-extra , containers, data-default-class, deepseq, directory, file-embed @@ -236826,6 +238566,40 @@ self: { homepage = "http://www.yesodweb.com/"; description = "The yesod helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-bin" = callPackage + ({ mkDerivation, async, attoparsec, base, base64-bytestring + , blaze-builder, bytestring, Cabal, conduit, conduit-extra + , containers, data-default-class, deepseq, directory, file-embed + , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit + , http-reverse-proxy, http-types, lifted-base, network + , optparse-applicative, parsec, process, project-template + , resourcet, shakespeare, split, streaming-commons, tar + , template-haskell, text, time, transformers, transformers-compat + , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls + , yaml, zlib + }: + mkDerivation { + pname = "yesod-bin"; + version = "1.4.18.1"; + sha256 = "75f17da2d3a18797391b5699a251a7815f0302ce009326b9e1413b078125c82c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async attoparsec base base64-bytestring blaze-builder bytestring + Cabal conduit conduit-extra containers data-default-class deepseq + directory file-embed filepath fsnotify ghc ghc-paths http-client + http-conduit http-reverse-proxy http-types lifted-base network + optparse-applicative parsec process project-template resourcet + shakespeare split streaming-commons tar template-haskell text time + transformers transformers-compat unix-compat unordered-containers + wai wai-extra warp warp-tls yaml zlib + ]; + homepage = "http://www.yesodweb.com/"; + description = "The yesod helper executable"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-bootstrap" = callPackage @@ -237804,7 +239578,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_20_1" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -237841,6 +239615,46 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-core" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.20.2"; + sha256 = "cfa62e47de410bff1fd37571a3c7fda92b0a5cd28e1df8d466c7a65b5a2e6f28"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-crud" = callPackage @@ -238256,7 +240070,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-form" = callPackage + "yesod-form_1_4_7" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, data-default , email-validate, hspec, network-uri, persistent, resourcet @@ -238278,6 +240092,31 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Form handling support for Yesod Web Framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-form" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, data-default + , email-validate, hspec, network-uri, persistent, resourcet + , semigroups, shakespeare, template-haskell, text, time + , transformers, wai, xss-sanitize, yesod-core, yesod-persistent + }: + mkDerivation { + pname = "yesod-form"; + version = "1.4.7.1"; + sha256 = "66f1672c7aaec0b4c93f5cfc20593a4fb92d779d90d55ee5ebd1f7ae6a6e8dac"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html blaze-markup + byteable bytestring containers data-default email-validate + network-uri persistent resourcet semigroups shakespeare + template-haskell text time transformers wai xss-sanitize yesod-core + yesod-persistent + ]; + testHaskellDepends = [ base hspec text time ]; + homepage = "http://www.yesodweb.com/"; + description = "Form handling support for Yesod Web Framework"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-form-json" = callPackage @@ -238403,11 +240242,39 @@ self: { yesod yesod-core ]; testHaskellDepends = [ base ]; + doHaddock = false; homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; description = "Background jobs library for Yesod"; license = stdenv.lib.licenses.bsd3; }) {}; + "yesod-job-queue_0_2_0_1" = callPackage + ({ mkDerivation, aeson, api-field-json-th, base, bytestring + , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger + , persistent-sqlite, resourcet, stm, text, time, uuid, yesod + , yesod-core + }: + mkDerivation { + pname = "yesod-job-queue"; + version = "0.2.0.1"; + sha256 = "872f8f53fbe4f350a08493beaa59a4ad9103e3d3419abbdfbf92ac3122962ebf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson api-field-json-th base bytestring classy-prelude-yesod cron + file-embed hedis lens monad-logger stm text time uuid yesod + ]; + executableHaskellDepends = [ + base classy-prelude-yesod hedis monad-logger persistent-sqlite + resourcet yesod yesod-core + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; + description = "Background jobs library for Yesod"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-json" = callPackage ({ mkDerivation, base, yesod-core }: mkDerivation { @@ -238546,6 +240413,7 @@ self: { warp yaml yesod yesod-auth yesod-core yesod-form yesod-persistent yesod-static ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; @@ -238780,7 +240648,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-persistent" = callPackage + "yesod-persistent_1_4_0_4" = callPackage ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent , persistent-sqlite, persistent-template, resource-pool, resourcet , text, transformers, wai-extra, yesod-core @@ -238800,6 +240668,29 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Some helpers for using Persistent from Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-persistent" = callPackage + ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent + , persistent-sqlite, persistent-template, resource-pool, resourcet + , text, transformers, wai-extra, yesod-core + }: + mkDerivation { + pname = "yesod-persistent"; + version = "1.4.0.5"; + sha256 = "e5ad890ca4d4c0499ae08e5e1e294f4c1435e9395ba1ba9bb3acf3982eb8d2c2"; + libraryHaskellDepends = [ + base blaze-builder conduit persistent persistent-template + resource-pool resourcet transformers yesod-core + ]; + testHaskellDepends = [ + base blaze-builder conduit hspec persistent persistent-sqlite text + wai-extra yesod-core + ]; + homepage = "http://www.yesodweb.com/"; + description = "Some helpers for using Persistent from Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-platform" = callPackage @@ -239386,7 +241277,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-static-angular" = callPackage + "yesod-static-angular_0_1_7" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-markup , bytestring, data-default, directory, filepath, hamlet, hspec , HUnit, language-javascript, mime-types, shakespeare @@ -239415,9 +241306,10 @@ self: { homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-static-angular_0_1_8" = callPackage + "yesod-static-angular" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-markup , bytestring, data-default, directory, filepath, hamlet, hspec , HUnit, language-javascript, mime-types, shakespeare @@ -239442,11 +241334,10 @@ self: { base bytestring hamlet hspec HUnit shakespeare template-haskell text yesod-core yesod-static yesod-test ]; - jailbreak = true; + doCheck = false; homepage = "https://bitbucket.org/wuzzeb/yesod-static-angular"; description = "Yesod generators for embedding AngularJs code into yesod-static at compile time"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-table_1_0_3" = callPackage @@ -239750,7 +241641,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-test" = callPackage + "yesod-test_1_5_1_0" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, case-insensitive, containers, cookie , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base @@ -239774,6 +241665,33 @@ self: { homepage = "http://www.yesodweb.com"; description = "integration testing for WAI/Yesod Applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-test" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, case-insensitive, containers, cookie + , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base + , monad-control, network, persistent, text, time, transformers, wai + , wai-extra, xml-conduit, xml-types, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-test"; + version = "1.5.1.1"; + sha256 = "0886927c92ddc59608902c6fb02b8e8b9e631120dd6e75db764a95b5a75b0160"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + case-insensitive containers cookie hspec-core html-conduit + http-types HUnit monad-control network persistent text time + transformers wai wai-extra xml-conduit xml-types yesod-core + ]; + testHaskellDepends = [ + base bytestring containers hspec html-conduit http-types HUnit + lifted-base text wai xml-conduit yesod-core yesod-form + ]; + homepage = "http://www.yesodweb.com"; + description = "integration testing for WAI/Yesod Applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-test-json" = callPackage -- cgit 1.4.1 From f622804472ee0e4ba7e0e5ad0dbf5a19087dff08 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Apr 2016 17:05:15 +0200 Subject: Add LTS Haskell 5.14. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 0060b7e37d7ab..3798abe92082e 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -386,7 +386,10 @@ rec { lts-5_13 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.13.nix { }; }; - lts-5 = packages.lts-5_13; + lts-5_14 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.14.nix { }; + }; + lts-5 = packages.lts-5_14; lts = packages.lts-5; }; -- cgit 1.4.1 From f6980571ab6906782b645885399ffcbcede202dd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 3 May 2016 10:09:52 +0200 Subject: Add LTS Haskell 5.15. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 3798abe92082e..3401e967fe88d 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -389,7 +389,10 @@ rec { lts-5_14 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.14.nix { }; }; - lts-5 = packages.lts-5_14; + lts-5_15 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.15.nix { }; + }; + lts-5 = packages.lts-5_15; lts = packages.lts-5; }; -- cgit 1.4.1 From ec493075184f342d29b125457a9a84ccdaf9419a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 26 Apr 2016 17:14:36 +0200 Subject: haskell-hakyll: fix test suite by providing "rev" in test environment --- pkgs/development/haskell-modules/configuration-common.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 363ddcbea8869..3616847dfa058 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -276,7 +276,6 @@ self: super: { filestore = dontCheck super.filestore; getopt-generics = dontCheck super.getopt-generics; graceful = dontCheck super.graceful; - hakyll = dontCheck super.hakyll; Hclip = dontCheck super.Hclip; HList = dontCheck super.HList; ide-backend = dontCheck super.ide-backend; -- cgit 1.4.1 From ddb8c06c2d82c44077b2b73606297a70191c3ca2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 25 Apr 2016 10:10:44 +0200 Subject: haskell-yi: mark as broken --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 3616847dfa058..4a9857b20dfde 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1013,4 +1013,12 @@ self: super: { # generate enough conclusive test cases. split = dontCheck super.split; + # https://github.com/NixOS/nixpkgs/issues/14967 + yi = markBroken super.yi; + yi-fuzzy-open = markBroken super.yi-fuzzy-open; + yi-monokai = markBroken super.yi-monokai; + yi-snippet = markBroken super.yi-snippet; + yi-solarized = markBroken super.yi-solarized; + yi-spolsky = markBroken super.yi-spolsky; + } -- cgit 1.4.1 From 967901f1957b98df04c91d6a54b7b55afe07fb97 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Apr 2016 09:48:20 +0200 Subject: haskell-binary: update version used for GHC releases prior to 7.8.x --- 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 1bdd454d4080f..89755799af8c2 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_2_1; + binary = self.binary_0_8_3_0; 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 db0aa51492fe0..d4c3ae73114d0 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_2_1; process = self.process_1_2_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_3_0; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; 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 e2bb4f00d7872..977fffbd5584b 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_2_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_3_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_2_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); # 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 e10136a42ee08..4ce544534fc39 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_2_1; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_3_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_2_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; -- cgit 1.4.1 From 66ff540ee6afc52c443296dbfdc7683e608399ea Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 29 Apr 2016 11:22:15 +0200 Subject: haskell-lens: update version used by GHC 8.0.x --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 555223b759442..3611b19db1b68 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -66,7 +66,7 @@ self: super: { kan-extensions = self.kan-extensions_5_0_1; # Earlier versions don't support kan-extensions 5.x. - lens = self.lens_4_13_2_1; + lens = self.lens_4_14; # https://github.com/dreixel/generic-deriving/issues/37 generic-deriving = dontHaddock super.generic-deriving; -- cgit 1.4.1 From 066b5cb11abd8ac049b833e9204cbd903ec3cdf8 Mon Sep 17 00:00:00 2001 From: Edward Tjörnhammar Date: Tue, 3 May 2016 10:59:29 +0200 Subject: idea.idea-{community,ultimate}: 2016.1 -> 2016.1.1 --- pkgs/applications/editors/idea/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index 482cbc56bcf70..d51eee6817ff8 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -185,13 +185,13 @@ in idea-community = buildIdea rec { name = "idea-community-${version}"; - version = "2016.1"; - build = "IC-145.258.11"; + version = "2016.1.1"; + build = "IC-145.597"; description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; license = stdenv.lib.licenses.asl20; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz"; - sha256 = "1grgyaapsbf7xn0m18x6fgghjh9n1n2zblz9608g9qgx5p28kn6q"; + sha256 = "1r0kvq8vk8ln4cabqjvfqp0lfy9vf8c8vddh76sd41d635pamba6"; }; }; @@ -209,13 +209,13 @@ in idea-ultimate = buildIdea rec { name = "idea-ultimate-${version}"; - version = "2016.1"; - build = "IU-145.258.11"; + version = "2016.1.1"; + build = "IU-145.597"; description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz"; - sha256 = "15ybqdy311wi3iqi7bzk798cd91jpl73ngl86kzwr68d24nyy3zb"; + sha256 = "d5a7d2d657fe2ad170716054c6ccd164e509cf50ee6eee8b61fe3490071940df"; }; }; -- cgit 1.4.1 From 2362891dc815160e343e52458f25db22508ac487 Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Thu, 28 Apr 2016 23:48:13 +0200 Subject: Just strip everything by default Run strip of each file and discard expected failure types. Also default to stripping the entire output. --- pkgs/build-support/setup-hooks/strip.sh | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/setup-hooks/strip.sh b/pkgs/build-support/setup-hooks/strip.sh index 6860c9b9cb9ad..33ef85e436e23 100644 --- a/pkgs/build-support/setup-hooks/strip.sh +++ b/pkgs/build-support/setup-hooks/strip.sh @@ -4,7 +4,7 @@ fixupOutputHooks+=(_doStrip) _doStrip() { if [ -z "$dontStrip" ]; then - stripDebugList=${stripDebugList:-lib lib32 lib64 libexec bin sbin} + stripDebugList=${stripDebugList:-.} if [ -n "$stripDebugList" ]; then stripDirs "$stripDebugList" "${stripDebugFlags:--S}" fi @@ -29,8 +29,20 @@ stripDirs() { dirs=${dirsNew} if [ -n "${dirs}" ]; then - header "stripping (with flags $stripFlags) in$dirs" - find $dirs -type f -print0 | xargs -0 ${xargsFlags:--r} strip $commonStripFlags $stripFlags || true + header "Stripping (with flags $stripFlags) in$dirs" + while IFS= read -r -d $'\0' f; do + if out=$(strip $commonStripFlags $stripFlags "$f" 2>&1); then + echo "Stripped $f" + else + # Ignore failures on files that cannot be stripped. + if [ "$out" = "strip:$f: File format not recognized" ]; then + continue + fi + + echo "Strip failed on file $f: $out" + false # fail ! + fi + done < <(find $dirs -type f -print0) stopNest fi } -- cgit 1.4.1 From 0ba62f7150ed1b2756adb52b1bac6d3d7d93831f Mon Sep 17 00:00:00 2001 From: rardiol Date: Tue, 3 May 2016 06:19:19 -0300 Subject: spring, springlobby update (#15182) * alure: init at 1.2 * spring: 96.0 -> 101.0 * springlobby: 0.195 -> 0.247 --- pkgs/development/libraries/alure/default.nix | 20 ++++++++++++++++++++ pkgs/games/spring/default.nix | 25 +++++++++++++++++-------- pkgs/games/spring/springlobby.nix | 16 +++++++--------- pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 46 insertions(+), 17 deletions(-) create mode 100644 pkgs/development/libraries/alure/default.nix diff --git a/pkgs/development/libraries/alure/default.nix b/pkgs/development/libraries/alure/default.nix new file mode 100644 index 0000000000000..200ff1ca2e7f2 --- /dev/null +++ b/pkgs/development/libraries/alure/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, cmake, openal }: + +stdenv.mkDerivation rec { + name = "alure-${version}"; + version = "1.2"; + + src = fetchurl { + url = "http://kcat.strangesoft.net/alure-releases/alure-${version}.tar.bz2"; + sha256 = "0w8gsyqki21s1qb2s5ac1kj08i6nc937c0rr08xbw9w9wvd6lpj6"; + }; + + buildInputs = [ cmake openal ]; + + meta = with stdenv.lib; { + description = "A utility library to help manage common tasks with OpenAL applications"; + homepage = http://kcat.strangesoft.net/alure.html; + license = licenses.mit; + platforms = platforms.unix; + }; +} diff --git a/pkgs/games/spring/default.nix b/pkgs/games/spring/default.nix index 525adbc0a123d..9e4a0954272bc 100644 --- a/pkgs/games/spring/default.nix +++ b/pkgs/games/spring/default.nix @@ -1,32 +1,41 @@ { stdenv, fetchurl, cmake, lzma, boost, libdevil, zlib, p7zip -, openal, libvorbis, glew, freetype, xorg, SDL, mesa, binutils +, openal, libvorbis, glew, freetype, xorg, SDL2, mesa, binutils , asciidoc, libxslt, docbook_xsl, docbook_xsl_ns, curl, makeWrapper -, jdk ? null, python ? null, systemd +, jdk ? null, python ? null, systemd, libunwind, glibc, which, minizip , withAI ? true # support for AI Interfaces and Skirmish AIs }: stdenv.mkDerivation rec { name = "spring-${version}"; - version = "96.0"; + version = "101.0"; src = fetchurl { url = "mirror://sourceforge/springrts/spring_${version}_src.tar.lzma"; - sha256 = "1axyqkxgv3a0zg0afzlc7j3lyi412zd551j317ci41yqz2qzf0px"; + sha256 = "0nr65zhw92k36zgwqgi31vcp129vk7r3v7xzd6l9w7mp1ljvypgi"; }; + # The cmake included module correcly finds nix's glew, however + # it has to be the bundled FindGLEW for headless or dedicated builds + prePatch = '' + substituteInPlace ./rts/build/cmake/FindAsciiDoc.cmake \ + --replace "PATHS /usr /usr/share /usr/local /usr/local/share" "PATHS ${docbook_xsl}"\ + --replace "xsl/docbook/manpages" "share/xml/docbook-xsl/manpages" + patchShebangs . + rm rts/build/cmake/FindGLEW.cmake + ''; + cmakeFlags = ["-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON" "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH:BOOL=ON" "-DPREFER_STATIC_LIBS:BOOL=OFF"]; - buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL + buildInputs = [ cmake lzma boost libdevil zlib p7zip openal libvorbis freetype SDL2 xorg.libX11 xorg.libXcursor mesa glew asciidoc libxslt docbook_xsl curl makeWrapper - docbook_xsl_ns systemd ] + docbook_xsl_ns systemd libunwind glibc.dev glibc.static which minizip ] ++ stdenv.lib.optional withAI jdk ++ stdenv.lib.optional withAI python; - # reported upstream http://springrts.com/mantis/view.php?id=4305 - #enableParallelBuilding = true; # occasionally missing generated files on Hydra + enableParallelBuilding = true; NIX_CFLAGS_COMPILE = "-fpermissive"; # GL header minor incompatibility diff --git a/pkgs/games/spring/springlobby.nix b/pkgs/games/spring/springlobby.nix index bbcbd1920e9da..571cf311545a6 100644 --- a/pkgs/games/spring/springlobby.nix +++ b/pkgs/games/spring/springlobby.nix @@ -1,18 +1,19 @@ -{ stdenv, fetchurl, cmake, wxGTK, openal, pkgconfig, curl, libtorrentRasterbar, libpng, libX11 -, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring, makeWrapper }: +{ stdenv, fetchurl, cmake, wxGTK30, openal, pkgconfig, curl, libtorrentRasterbar +, libpng, libX11, gettext, bash, gawk, boost, libnotify, gtk, doxygen, spring +, makeWrapper, glib, minizip, alure, pcre, jsoncpp }: stdenv.mkDerivation rec { name = "springlobby-${version}"; - version = "0.195"; + version = "0.247"; src = fetchurl { url = "http://www.springlobby.info/tarballs/springlobby-${version}.tar.bz2"; - sha256 = "0hxxm97c74rvm78vlfn2byn0zjlrhankxdrs2hz73rdq6451h10b"; + sha256 = "0sx14k4xsyjkmphhxfn9q341lv32c53g6wl1cbdx2sknzs3qasxs"; }; buildInputs = [ - cmake wxGTK openal pkgconfig curl gettext libtorrentRasterbar - boost libpng libX11 libnotify gtk doxygen makeWrapper + cmake wxGTK30 openal pkgconfig curl gettext libtorrentRasterbar pcre jsoncpp + boost libpng libX11 libnotify gtk doxygen makeWrapper glib minizip alure ]; prePatch = '' @@ -21,9 +22,6 @@ stdenv.mkDerivation rec { substituteInPlace CMakeLists.txt --replace "boost_system-mt" "boost_system" ''; - # for now sound is disabled as it causes a linker error with alure i can't resolve (qknight) - cmakeFlags = "-DOPTION_SOUND:BOOL=OFF"; - enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 85c2afd4a5407..cb067817f5486 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6416,6 +6416,8 @@ in afflib = callPackage ../development/libraries/afflib { }; + alure = callPackage ../development/libraries/alure { }; + agg = callPackage ../development/libraries/agg { }; allegro = callPackage ../development/libraries/allegro {}; -- cgit 1.4.1 From 4b2caa2409fa836b456be59f52b27ac6e49fb17a Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 06:45:17 -0300 Subject: Greybird: init at 2016-03-11 --- pkgs/misc/themes/greybird/default.nix | 33 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/misc/themes/greybird/default.nix diff --git a/pkgs/misc/themes/greybird/default.nix b/pkgs/misc/themes/greybird/default.nix new file mode 100644 index 0000000000000..173b392d22a48 --- /dev/null +++ b/pkgs/misc/themes/greybird/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchFromGitHub, gtk-engine-murrine }: + +stdenv.mkDerivation rec { + pname = "Greybird"; + version = "2016-03-11"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + repo = "${pname}"; + owner = "shimmerproject"; + rev = "77f3cbd94b0c87f502aaeeaa7fd6347283c876cf"; + sha256 = "1gqq9j61izdw8arly8kzr629wa904rn6mq48cvlaksknimw0hf2h"; + }; + + buildInputs = [ gtk-engine-murrine ]; + + dontBuild = true; + + installPhase = '' + mkdir -p $out/share/themes/${pname}{," Bright"," Compact"," a11y"} + cp -a * $out/share/themes/${pname}/ + mv $out/share/themes/${pname}/xfce-notify-4.0_bright $out/share/themes/${pname}" Bright"/xfce-notify-4.0 + mv $out/share/themes/${pname}/xfwm4-compact $out/share/themes/${pname}" Compact"/xfwm4 + mv $out/share/themes/${pname}/xfwm4-a11y $out/share/themes/${pname}" a11y"/xfwm4 + ''; + + meta = { + description = "Grey and blue theme (Gtk, Xfce, Emerald, Metacity, Mutter, Unity)"; + homepage = http://shimmerproject.org/our-projects/greybird/; + license = with stdenv.lib.licenses; [ gpl2Plus cc-by-nc-sa-30 ]; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4126d518076a8..b73efcba400df 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16266,6 +16266,8 @@ in gnuk-unstable = callPackage ../misc/gnuk/unstable.nix { }; gnuk-git = callPackage ../misc/gnuk/git.nix { }; + greybird = callPackage ../misc/themes/greybird { }; + gxemul = callPackage ../misc/emulators/gxemul { }; hatari = callPackage ../misc/emulators/hatari { }; -- cgit 1.4.1 From fe0bb1efd13b75eeb0785840d88c2280562d5f69 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 3 May 2016 13:19:15 +0300 Subject: imagemagick: add webp support --- pkgs/applications/graphics/ImageMagick/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index b732a2ed91676..78837f55af4ce 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, fetchurl, pkgconfig, libtool , bzip2, zlib, libX11, libXext, libXt, fontconfig, freetype, ghostscript, libjpeg -, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg +, lcms2, openexr, libpng, librsvg, libtiff, libxml2, openjpeg, libwebp }: let @@ -39,13 +39,14 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg - openexr libpng librsvg libtiff libxml2 openjpeg + openexr libpng librsvg libtiff libxml2 openjpeg libwebp ]; propagatedBuildInputs = [ bzip2 freetype libjpeg libX11 libXext libXt lcms2 ]; postInstall = '' + (cd "$out/include" && ln -s ImageMagick* ImageMagick) '' + lib.optionalString (ghostscript != null) '' for la in $out/lib/*.la; do diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cb067817f5486..a74438448f8b9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12871,6 +12871,7 @@ in libtiff = null; libxml2 = null; openjpeg = null; + libwebp = null; }; imagemagick = self.imagemagickBig.override { -- cgit 1.4.1 From 6f7fdda06e69c7e37df14c6fb37529b4d2b24687 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Tue, 3 May 2016 15:29:31 +0300 Subject: rspamd: 1.2.5 -> 1.2.6 --- pkgs/servers/mail/rspamd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/rspamd/default.nix b/pkgs/servers/mail/rspamd/default.nix index a9da7953978f1..0888eb1182a04 100644 --- a/pkgs/servers/mail/rspamd/default.nix +++ b/pkgs/servers/mail/rspamd/default.nix @@ -6,13 +6,13 @@ in stdenv.mkDerivation rec { name = "rspamd-${version}"; - version = "1.2.5"; + version = "1.2.6"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rspamd"; rev = version; - sha256 = "0slpixcfd74qkm7445lmcry4s1yamayphzzyr7cxjlr9xfxlblqn"; + sha256 = "152s8shanzm1z0ijcsvki21s4gy2v6lby82qh6ngwl6abh465gq9"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; -- cgit 1.4.1 From 7dea8d17a76f2164ad96c5da85835b38806269a5 Mon Sep 17 00:00:00 2001 From: "Alexander V. Nikolaev" Date: Tue, 3 May 2016 15:34:20 +0300 Subject: rmilter: 1.8.1 -> 1.8.4 --- pkgs/servers/mail/rmilter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/rmilter/default.nix b/pkgs/servers/mail/rmilter/default.nix index d5ba98bfbb3ce..85979ecca8230 100644 --- a/pkgs/servers/mail/rmilter/default.nix +++ b/pkgs/servers/mail/rmilter/default.nix @@ -8,13 +8,13 @@ in stdenv.mkDerivation rec { name = "rmilter-${version}"; - version = "1.8.1"; + version = "1.8.4"; src = fetchFromGitHub { owner = "vstakhov"; repo = "rmilter"; rev = version; - sha256 = "0cplkc1acgysxn8id9wakd1fx0f76cazscpfqhrxyjbk5fb11ll4"; + sha256 = "0d2hv39sbzsv3bkbx433vpdqgcjv71v2kkaz4k065xppi35wa2js"; }; nativeBuildInputs = [ bison cmake flex ]; -- cgit 1.4.1 From 8ebae7fc3c861e76f720838910d8f268ed60a030 Mon Sep 17 00:00:00 2001 From: Sebastian Gniazdowski Date: Tue, 3 May 2016 11:44:08 +0000 Subject: zsh-navigation-tools: install all files --- pkgs/tools/misc/zsh-navigation-tools/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index 8074f78db50b9..499dccdb19d2d 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -15,8 +15,11 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/share/zsh/site-functions/ + cp zsh-navigation-tools.plugin.zsh $out/share/zsh/site-functions/ cp n-* $out/share/zsh/site-functions/ cp znt-* $out/share/zsh/site-functions/ + mkdir -p $out/share/zsh/site-functions/.config/znt + cp .config/znt/n-* $out/share/zsh/site-functions/.config/znt ''; meta = with stdenv.lib; { -- cgit 1.4.1 From d092838a1c342747bd522abac875381134679137 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 2 May 2016 22:21:42 +0200 Subject: postfix: 3.0.3 -> 3.0.4 --- pkgs/servers/mail/postfix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 52327090e441e..75685d7605e23 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -23,11 +23,11 @@ in stdenv.mkDerivation rec { name = "postfix-${version}"; - version = "3.0.3"; + version = "3.0.4"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; + sha256 = "03msimdzxndm1nskljarws45wpqk020ckfcrmn1p3pxrfq8yh75q"; }; buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] -- cgit 1.4.1 From 70ac1ec4224e2b85d01c12f5054e50828b982c00 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Mon, 2 May 2016 22:20:52 +0200 Subject: dovecot: 2.2.21 -> 2.2.24 --- pkgs/servers/mail/dovecot/2.2.x-module_dir.patch | 85 ++++++++++++------------ pkgs/servers/mail/dovecot/default.nix | 4 +- 2 files changed, 46 insertions(+), 43 deletions(-) diff --git a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch index a6edc8d83ee96..66059cff6f760 100644 --- a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch +++ b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch @@ -1,7 +1,8 @@ -diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c ---- dovecot-2.2.12-orig/src/auth/main.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/auth/main.c 2014-03-14 09:28:17.642334838 +0100 -@@ -193,7 +193,7 @@ +diff --git a/src/auth/main.c b/src/auth/main.c +index 5a87c57..74bff52 100644 +--- a/src/auth/main.c ++++ b/src/auth/main.c +@@ -194,7 +194,7 @@ static void main_preinit(void) mod_set.debug = global_auth_settings->debug; mod_set.filter_callback = auth_module_filter; @@ -10,7 +11,7 @@ diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c module_dir_init(modules); if (!worker) -@@ -223,7 +223,7 @@ +@@ -225,7 +225,7 @@ void auth_module_load(const char *names) mod_set.debug = global_auth_settings->debug; mod_set.ignore_missing = TRUE; @@ -19,10 +20,11 @@ diff -ur dovecot-2.2.12-orig/src/auth/main.c dovecot-2.2.12/src/auth/main.c &mod_set); module_dir_init(modules); } -diff -ur dovecot-2.2.12-orig/src/config/all-settings.c dovecot-2.2.12/src/config/all-settings.c ---- dovecot-2.2.12-orig/src/config/all-settings.c 2014-02-11 23:31:37.000000000 +0100 -+++ dovecot-2.2.12/src/config/all-settings.c 2014-03-14 09:32:08.907608311 +0100 -@@ -773,7 +773,7 @@ +diff --git a/src/config/all-settings.c b/src/config/all-settings.c +index de223a5..2df2d21 100644 +--- a/src/config/all-settings.c ++++ b/src/config/all-settings.c +@@ -836,7 +836,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", @@ -31,20 +33,20 @@ diff -ur dovecot-2.2.12-orig/src/config/all-settings.c dovecot-2.2.12/src/config .mail_log_prefix = "%s(%u): ", -@@ -3304,7 +3304,7 @@ +@@ -3545,7 +3545,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", + .auth_debug = FALSE, .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", - .doveadm_worker_count = 0, -Only in dovecot-2.2.12/src/config: all-settings.c.orig -diff -ur dovecot-2.2.12-orig/src/config/config-parser.c dovecot-2.2.12/src/config/config-parser.c ---- dovecot-2.2.12-orig/src/config/config-parser.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/config/config-parser.c 2014-03-14 09:28:17.645334840 +0100 -@@ -990,7 +990,7 @@ +diff --git a/src/config/config-parser.c b/src/config/config-parser.c +index 2a5009a..134f92b 100644 +--- a/src/config/config-parser.c ++++ b/src/config/config-parser.c +@@ -1047,7 +1047,7 @@ void config_parse_load_modules(void) memset(&mod_set, 0, sizeof(mod_set)); mod_set.abi_version = DOVECOT_ABI_VERSION; @@ -53,10 +55,11 @@ diff -ur dovecot-2.2.12-orig/src/config/config-parser.c dovecot-2.2.12/src/confi module_dir_init(modules); i_array_init(&new_roots, 64); -diff -ur dovecot-2.2.12-orig/src/dict/main.c dovecot-2.2.12/src/dict/main.c ---- dovecot-2.2.12-orig/src/dict/main.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/dict/main.c 2014-03-14 09:28:17.645334840 +0100 -@@ -61,7 +61,7 @@ +diff --git a/src/dict/main.c b/src/dict/main.c +index e6c945e..06ad6c5 100644 +--- a/src/dict/main.c ++++ b/src/dict/main.c +@@ -62,7 +62,7 @@ static void main_init(void) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.require_init_funcs = TRUE; @@ -65,23 +68,24 @@ diff -ur dovecot-2.2.12-orig/src/dict/main.c dovecot-2.2.12/src/dict/main.c module_dir_init(modules); /* Register only after loading modules. They may contain SQL drivers, -diff -ur dovecot-2.2.12-orig/src/doveadm/doveadm-settings.c dovecot-2.2.12/src/doveadm/doveadm-settings.c ---- dovecot-2.2.12-orig/src/doveadm/doveadm-settings.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/doveadm/doveadm-settings.c 2014-03-14 09:32:56.540087069 +0100 -@@ -77,7 +77,7 @@ +diff --git a/src/doveadm/doveadm-settings.c b/src/doveadm/doveadm-settings.c +index df12284..19c18da 100644 +--- a/src/doveadm/doveadm-settings.c ++++ b/src/doveadm/doveadm-settings.c +@@ -81,7 +81,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", + .auth_debug = FALSE, .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", - .doveadm_worker_count = 0, -Only in dovecot-2.2.12/src/doveadm: doveadm-settings.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-fs/fs-api.c dovecot-2.2.12/src/lib-fs/fs-api.c ---- dovecot-2.2.12-orig/src/lib-fs/fs-api.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-fs/fs-api.c 2014-03-14 09:28:17.646334843 +0100 -@@ -89,7 +89,7 @@ +diff --git a/src/lib-fs/fs-api.c b/src/lib-fs/fs-api.c +index b50fbe0..ace3aff 100644 +--- a/src/lib-fs/fs-api.c ++++ b/src/lib-fs/fs-api.c +@@ -114,7 +114,7 @@ static void fs_class_try_load_plugin(const char *driver) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.ignore_missing = TRUE; @@ -90,11 +94,11 @@ diff -ur dovecot-2.2.12-orig/src/lib-fs/fs-api.c dovecot-2.2.12/src/lib-fs/fs-ap module_name, &mod_set); module_dir_init(fs_modules); -Only in dovecot-2.2.12/src/lib-fs: fs-api.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c dovecot-2.2.12/src/lib-ssl-iostream/iostream-ssl.c ---- dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-ssl-iostream/iostream-ssl.c 2014-03-14 09:28:17.646334843 +0100 -@@ -30,7 +30,7 @@ +diff --git a/src/lib-ssl-iostream/iostream-ssl.c b/src/lib-ssl-iostream/iostream-ssl.c +index a0659ab..dba3729 100644 +--- a/src/lib-ssl-iostream/iostream-ssl.c ++++ b/src/lib-ssl-iostream/iostream-ssl.c +@@ -29,7 +29,7 @@ static int ssl_module_load(const char **error_r) memset(&mod_set, 0, sizeof(mod_set)); mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.setting_name = ""; @@ -103,11 +107,11 @@ diff -ur dovecot-2.2.12-orig/src/lib-ssl-iostream/iostream-ssl.c dovecot-2.2.12/ ssl_vfuncs = module_get_symbol(ssl_module, "ssl_vfuncs"); if (ssl_vfuncs == NULL) { -Only in dovecot-2.2.12/src/lib-ssl-iostream: iostream-ssl.c.orig -diff -ur dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c dovecot-2.2.12/src/lib-storage/mail-storage-settings.c ---- dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c 2014-02-11 23:23:37.000000000 +0100 -+++ dovecot-2.2.12/src/lib-storage/mail-storage-settings.c 2014-03-14 09:28:17.646334843 +0100 -@@ -262,7 +262,7 @@ +diff --git a/src/lib-storage/mail-storage-settings.c b/src/lib-storage/mail-storage-settings.c +index e2233bf..bbf981e 100644 +--- a/src/lib-storage/mail-storage-settings.c ++++ b/src/lib-storage/mail-storage-settings.c +@@ -274,7 +274,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", @@ -116,4 +120,3 @@ diff -ur dovecot-2.2.12-orig/src/lib-storage/mail-storage-settings.c dovecot-2.2 .mail_log_prefix = "%s(%u): ", -Only in dovecot-2.2.12/src/lib-storage: mail-storage-settings.c.orig diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index ec4c5c935af01..5bfdc5949247e 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -8,7 +8,7 @@ }: stdenv.mkDerivation rec { - name = "dovecot-2.2.21"; + name = "dovecot-2.2.24"; nativeBuildInputs = [ perl pkgconfig ]; buildInputs = [ openssl bzip2 zlib clucene_core_2 icu openldap ] @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://dovecot.org/releases/2.2/${name}.tar.gz"; - sha256 = "080bil83gr2dski4gk2bxykg2g497kqm2hn2z4xkbw71b6g17dvs"; + sha256 = "1dxymvvkykbrx3crb8qsixizgjz23jikxg6vsc1mgswdxa8nij3i"; }; preConfigure = '' -- cgit 1.4.1 From c0f4361902d786459b29d69913f606a4a7f92d1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 1 May 2016 14:41:52 +0200 Subject: php: Fix openssl module build --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index c9fbf5c5de6fc..d6b4e03a2f661 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -154,8 +154,8 @@ let }; openssl = { - configureFlags = ["--enable-openssl"]; - buildInputs = [openssl]; + configureFlags = ["--with-openssl"]; + buildInputs = [openssl openssl.dev]; }; mbstring = { -- cgit 1.4.1 From ffdcdb5124d0542bb61f16556fdd60ea5f73971a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 26 Apr 2016 01:02:04 +0200 Subject: znapzend: 0.15.3 -> 0.15.5 --- pkgs/tools/backup/znapzend/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/backup/znapzend/default.nix b/pkgs/tools/backup/znapzend/default.nix index 1534a0bab0a3c..d465813293030 100644 --- a/pkgs/tools/backup/znapzend/default.nix +++ b/pkgs/tools/backup/znapzend/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, zfs, mbuffer, perl, perlPackages, wget, autoconf, automake }: let - version = "0.15.3"; - checksum = "1xk0lgb23kv1cl0wc2rav75hjrjigd0cp3hjw9gxab835vsvnkq0"; + version = "0.15.5"; + checksum = "09cf9n5i1wxlkhq8ky9npg1a6qiz4blizhbb9390gy0m0wl9l7zw"; in stdenv.mkDerivation rec { name = "znapzend-${version}"; - src = fetchFromGitHub{ + src = fetchFromGitHub { owner = "oetiker"; repo = "znapzend"; rev = "v${version}"; @@ -61,7 +61,6 @@ stdenv.mkDerivation rec { " ''; - meta = with stdenv.lib; { description = "High performance open source ZFS backup with mbuffer and ssh support"; homepage = http://www.znapzend.org; -- cgit 1.4.1 From b9fc31a4152a0e89c57231220c8e853606d5a5ce Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 3 May 2016 16:07:59 +0200 Subject: popcorntime: mark as broken A temporary measure, short of removal, until https://github.com/NixOS/nixpkgs/issues/15120 has been resolved. --- pkgs/applications/video/popcorntime/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/video/popcorntime/default.nix b/pkgs/applications/video/popcorntime/default.nix index 63c5f0460f28b..5b71f9901e15e 100644 --- a/pkgs/applications/video/popcorntime/default.nix +++ b/pkgs/applications/video/popcorntime/default.nix @@ -40,5 +40,6 @@ in stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ bobvanderlinden rnhmjoj ]; + broken = true; }; } -- cgit 1.4.1 From a6fdcea877889ff56f533e7bda7c0c57e56f0b72 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Sun, 24 Apr 2016 17:39:36 +0200 Subject: cimg: 1.5.9 -> 1.7.0 --- pkgs/development/libraries/cimg/builder.sh | 7 +++---- pkgs/development/libraries/cimg/default.nix | 15 ++++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/cimg/builder.sh b/pkgs/development/libraries/cimg/builder.sh index bbd5f71255178..6473395493c39 100644 --- a/pkgs/development/libraries/cimg/builder.sh +++ b/pkgs/development/libraries/cimg/builder.sh @@ -4,9 +4,8 @@ source $stdenv/setup unpackPhase cd $sourceRoot -install -dm 755 $out/include/cimg $out/share/doc/cimg/html $out/share/cimg/examples $out/share/cimg/plugins +install -dm 755 $out/include/cimg $doc/share/doc/cimg/html $doc/share/cimg/examples $doc/share/cimg/plugins install -m 644 CImg.h $out/include/cimg -cp -dr --no-preserve=ownership html/* $out/share/doc/cimg/html/ -cp -dr --no-preserve=ownership examples/* $out/share/cimg/examples/ -cp -dr --no-preserve=ownership plugins/* $out/share/cimg/plugins/ +cp -dr --no-preserve=ownership examples/* $doc/share/cimg/examples/ +cp -dr --no-preserve=ownership plugins/* $doc/share/cimg/plugins/ diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix index dc397adf49153..722852f12700c 100644 --- a/pkgs/development/libraries/cimg/default.nix +++ b/pkgs/development/libraries/cimg/default.nix @@ -4,21 +4,22 @@ stdenv.mkDerivation rec { name = "cimg-${version}"; - version = "1.5.9"; + version = "1.7.0"; src = fetchurl { - url = "mirror://sourceforge/project/cimg/CImg-${version}.zip"; - sha256 = "1xn20643gcbl76kvy9ajhwbyjjb73mg65q32ma8mdkwn1qhn7f7c"; + url = "http://cimg.eu/files/CImg_${version}.zip"; + sha256 = "06j3n7gvgxzvprqwf56nnca195y38dcbdlszrxyn5p9w9al437zj"; }; - buildInputs = with stdenv.lib; - [ unzip ]; + buildInputs = [ unzip ]; builder = ./builder.sh; - + + outputs = [ "out" "doc" ]; + meta = with stdenv.lib; { description = "A small, open source, C++ toolkit for image processing"; - homepage = http://cimg.sourceforge.net/; + homepage = http://cimg.eu/; license = licenses.cecill-c; maintainers = [ maintainers.AndersonTorres ]; platforms = platforms.unix; -- cgit 1.4.1 From e07b06d12a08b23bf90b9d75e90ea815c975dc30 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 04:58:54 +0200 Subject: tgt: 1.0.60 -> 1.0.63 --- pkgs/tools/networking/tgt/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix index f870b5463b604..bd4be0f1b867c 100644 --- a/pkgs/tools/networking/tgt/default.nix +++ b/pkgs/tools/networking/tgt/default.nix @@ -2,14 +2,15 @@ , docbook_xsl }: let - version = "1.0.60"; + version = "1.0.63"; in stdenv.mkDerivation rec { name = "tgt-${version}"; + src = fetchFromGitHub { owner = "fujita"; repo = "tgt"; - rev = "ab51727a361bf296b1c2036375b5e45479059921"; - sha256 = "1bf8rn3mavjrzkp5k23akqn5ilw43g8mpfr68z1bi8s9lr2gkf37"; + rev = "v${version}"; + sha256 = "1x3irnbfikdqhlikhwqazg0g0hc1df5r2bp001f13sr0nvw28y1n"; }; buildInputs = [ libxslt systemd libaio docbook_xsl ]; @@ -30,6 +31,7 @@ in stdenv.mkDerivation rec { ''; enableParallelBuilding = true; + meta = { description = "iSCSI Target daemon with rdma support"; license = stdenv.lib.licenses.gpl2; -- cgit 1.4.1 From e027ef7cb866f6cf40c2139eddf8fd43b8aafa8d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 04:53:24 +0200 Subject: iw: 4.1 -> 4.3 --- pkgs/os-specific/linux/iw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/iw/default.nix b/pkgs/os-specific/linux/iw/default.nix index 3cd2567d96f49..53aa15ec62e6a 100644 --- a/pkgs/os-specific/linux/iw/default.nix +++ b/pkgs/os-specific/linux/iw/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, libnl, pkgconfig}: stdenv.mkDerivation rec { - name = "iw-4.1"; + name = "iw-4.3"; src = fetchurl { url = "https://www.kernel.org/pub/software/network/iw/${name}.tar.xz"; - sha256 = "0jx3s5wdvm2qxd3h883fnyjsb1c29qcsz1r19bc029g8v2nalr2i"; + sha256 = "085jyvrxzarvn5jl0fk618jjxy50nqx7ifngszc4jxk6a4ddibd6"; }; buildInputs = [ libnl pkgconfig ]; -- cgit 1.4.1 From d8230abeed7168a044a231797678754c671c160b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 03:30:17 +0200 Subject: libass: 0.12.2 -> 0.13.2 --- pkgs/development/libraries/libass/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix index ab300729accfc..1acd71c30c84b 100644 --- a/pkgs/development/libraries/libass/default.nix +++ b/pkgs/development/libraries/libass/default.nix @@ -18,11 +18,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "libass-${version}"; - version = "0.12.2"; + version = "0.13.2"; src = fetchurl { url = "https://github.com/libass/libass/releases/download/${version}/${name}.tar.xz"; - sha256 = "1qzibgqmnnqk2r116lpk1br764g0v74f2zp12y5id0p1plaing37"; + sha256 = "1kpsw4zw95v4cjvild9wpk73dzavn1khsm3bm32kcz6amnkd166n"; }; configureFlags = [ -- cgit 1.4.1 From 47a7b42d511f492f3c67d66234c1c9fe7cbab0ae Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 03:06:10 +0200 Subject: collectd: 5.5.0 -> 5.5.1 --- pkgs/tools/system/collectd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index 5f42e39871a4f..8676ce31c66f8 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -31,12 +31,12 @@ , yajl ? null }: stdenv.mkDerivation rec { - version = "5.5.0"; + version = "5.5.1"; name = "collectd-${version}"; src = fetchurl { url = "http://collectd.org/files/${name}.tar.bz2"; - sha256 = "847684cf5c10de1dc34145078af3fcf6e0d168ba98c14f1343b1062a4b569e88"; + sha256 = "0gxwq3jl20wgvb7qawivshpkm4i3kvghpnfcn5yrlhphw4kdbigr"; }; buildInputs = [ -- cgit 1.4.1 From ed64199876f8329fa847f9fb2adf97df2b130145 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:46:24 +0200 Subject: libdwg: 0.3 -> 0.6 --- pkgs/development/libraries/libdwg/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libdwg/default.nix b/pkgs/development/libraries/libdwg/default.nix index a80c0677a3bdb..8ffa1ff819240 100644 --- a/pkgs/development/libraries/libdwg/default.nix +++ b/pkgs/development/libraries/libdwg/default.nix @@ -1,13 +1,15 @@ -{stdenv, fetchurl}: +{stdenv, fetchurl, indent}: stdenv.mkDerivation { - name = "libdwg-0.3"; + name = "libdwg-0.6"; src = fetchurl { - url = mirror://sourceforge/libdwg/libdwg-0.3.tar.bz2; - sha256 = "0lx7ih00m11qw9wsc5ksmwvi3d80l0yfwnbrn5qfz182w4d3fpc9"; + url = mirror://sourceforge/libdwg/libdwg-0.6.tar.bz2; + sha256 = "0l8ks1x70mkna1q7mzy1fxplinz141bd24qhrm1zkdil74mcsryc"; }; + nativeBuildInputs = [ indent ]; + meta = { description = "library reading dwg files"; homepage = http://libdwg.sourceforge.net/en/; -- cgit 1.4.1 From bc233fa54e1a66b53393c27272915d878a607508 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:32:51 +0200 Subject: arandr: 0.1.8 -> 0.1.9 --- pkgs/tools/X11/arandr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/X11/arandr/default.nix b/pkgs/tools/X11/arandr/default.nix index 68355d0d8aa86..676800f73e968 100644 --- a/pkgs/tools/X11/arandr/default.nix +++ b/pkgs/tools/X11/arandr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, python, xrandr, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "arandr-0.1.8"; + name = "arandr-0.1.9"; src = fetchurl { url = "http://christian.amsuess.com/tools/arandr/files/${name}.tar.gz"; - sha256 = "0d574mbmhaqmh7kivaryj2hpghz6xkvic9ah43s1hf385y7c33kd"; + sha256 = "1i3f1agixxbfy4kxikb2b241p7c2lg73cl9wqfvlwz3q6zf5faxv"; }; patchPhase = '' -- cgit 1.4.1 From 13b9d32917bc613f293688989bfa6e25fe5f3e59 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:25:25 +0200 Subject: libu2f-host: 1.0.0 -> 1.1.1 --- pkgs/development/libraries/libu2f-host/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index dc2481a2e85b2..98dbe517591f3 100644 --- a/pkgs/development/libraries/libu2f-host/default.nix +++ b/pkgs/development/libraries/libu2f-host/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, json_c, hidapi }: stdenv.mkDerivation rec { - name = "libu2f-host-1.0.0"; + name = "libu2f-host-1.1.1"; src = fetchurl { url = "https://developers.yubico.com/libu2f-host/Releases/${name}.tar.xz"; - sha256 = "0x232rp325k1l3rdh1b9d7w3w2z2lhjmp95v4mlmd8pybjdnpi8q"; + sha256 = "0g0f012w0c00cvj5g319x2b8prbh0d3fcac9960cy7xsd8chckg1"; }; nativeBuildInputs = [ pkgconfig ]; -- cgit 1.4.1 From 669cd2adbf984fb509ed61585fc92bde41b65871 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 02:21:20 +0200 Subject: lighttpd: 1.4.37 -> 1.4.39 --- pkgs/servers/http/lighttpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/lighttpd/default.nix b/pkgs/servers/http/lighttpd/default.nix index 60848516155da..af029cc4db2d6 100644 --- a/pkgs/servers/http/lighttpd/default.nix +++ b/pkgs/servers/http/lighttpd/default.nix @@ -7,11 +7,11 @@ assert enableMagnet -> lua5_1 != null; assert enableMysql -> mysql != null; stdenv.mkDerivation rec { - name = "lighttpd-1.4.37"; + name = "lighttpd-1.4.39"; src = fetchurl { url = "http://download.lighttpd.net/lighttpd/releases-1.4.x/${name}.tar.xz"; - sha256 = "1gbri5avg1jv2g585wk0jp53mf9jjdz2py9774mxm8bwarh6ykl0"; + sha256 = "0nrnhxl1ypzgsms0ky6zdf6ib94vf8x77c422s2xav9x7j2s3fby"; }; buildInputs = [ pkgconfig pcre libxml2 zlib attr bzip2 which file openssl ] -- cgit 1.4.1 From 117920233f11d66423b541374ef0acac5f2d5dd2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:33:25 +0200 Subject: flashrom: 0.9.7 -> 0.9.9 --- pkgs/tools/misc/flashrom/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/flashrom/default.nix b/pkgs/tools/misc/flashrom/default.nix index b514f1c920f2b..9db6fbca6fa67 100644 --- a/pkgs/tools/misc/flashrom/default.nix +++ b/pkgs/tools/misc/flashrom/default.nix @@ -1,15 +1,16 @@ { stdenv, fetchurl, pkgconfig, libftdi, pciutils }: -let version = "0.9.7"; in +let version = "0.9.9"; in stdenv.mkDerivation rec { name = "flashrom-${version}"; src = fetchurl { url = "http://download.flashrom.org/releases/${name}.tar.bz2"; - sha256 = "5a55212d00791981a9a1cb0cdca9d9e58bea6d399864251e7b410b4d3d6137e9"; + sha256 = "0i9wg1lyfg99bld7d00zqjm9f0lk6m0q3h3n9c195c9yysq5ccfb"; }; - buildInputs = [ pkgconfig libftdi pciutils ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libftdi pciutils ]; preConfigure = "export PREFIX=$out"; -- cgit 1.4.1 From 0ab30ecf06d5bf5271e4d256954f734d723b6f0a Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:49 +0200 Subject: libopus: 1.1 -> 1.1.2 --- pkgs/development/libraries/libopus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix index b8951e66c8bdb..20101fe6fe31e 100644 --- a/pkgs/development/libraries/libopus/default.nix +++ b/pkgs/development/libraries/libopus/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, fixedPoint ? false, withCustomModes ? true }: let - version = "1.1"; + version = "1.1.2"; in stdenv.mkDerivation rec { name = "libopus-${version}"; src = fetchurl { url = "http://downloads.xiph.org/releases/opus/opus-${version}.tar.gz"; - sha256 = "158xprn2086arvdib3vbbygz7z6jqkw2nci7nlywzzwallap0wmr"; + sha256 = "1z87x5c5x951lhnm70iqr2gqn15wns5cqsw8nnkvl48jwdw00a8f"; }; outputs = [ "dev" "out" ]; -- cgit 1.4.1 From 7ac522ad83f7d952bc2dd193f77c5e732e575413 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:33 +0200 Subject: libevdev: 1.4.5 -> 1.4.6 --- pkgs/development/libraries/libevdev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libevdev/default.nix b/pkgs/development/libraries/libevdev/default.nix index c1587cedd169e..3ff40141b164b 100644 --- a/pkgs/development/libraries/libevdev/default.nix +++ b/pkgs/development/libraries/libevdev/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, python }: stdenv.mkDerivation rec { - name = "libevdev-1.4.5"; + name = "libevdev-1.4.6"; src = fetchurl { url = "http://www.freedesktop.org/software/libevdev/${name}.tar.xz"; - sha256 = "07faqb47c7sjl25rc788cbslyiv5ijky0jc4g6312qz0hv55h779"; + sha256 = "1lrja526iyg48yw6i0dxdhyj63q9gwbgvj6xk1hskxzrqyhf2akv"; }; buildInputs = [ python ]; -- cgit 1.4.1 From b4a5bb3d4be7104bf933a0012af522cb3081d241 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:20:18 +0200 Subject: libev: 4.20 -> 4.22 --- pkgs/development/libraries/libev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix index 0472aeef694a4..37e0c9b3431ea 100644 --- a/pkgs/development/libraries/libev/default.nix +++ b/pkgs/development/libraries/libev/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libev-${version}"; - version="4.20"; + version="4.22"; src = fetchurl { url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz"; - sha256 = "17j47pbkr65a18mfvy2861p5k7w4pxmdgiw723ryfqd9gx636w7q"; + sha256 = "1mhvy38g9947bbr0n0hzc34zwfvvfd99qgzpkbap8g2lmkl7jq3k"; }; meta = { -- cgit 1.4.1 From 9f99116772ffd2a394f9fe2f084b6cd67c099d96 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:15:48 +0200 Subject: libnatspec: 0.2.6 -> 0.3.0 --- pkgs/development/libraries/libnatspec/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libnatspec/default.nix b/pkgs/development/libraries/libnatspec/default.nix index 7dafe3434f9f0..cdde02c361fa3 100644 --- a/pkgs/development/libraries/libnatspec/default.nix +++ b/pkgs/development/libraries/libnatspec/default.nix @@ -1,13 +1,15 @@ -{ stdenv, fetchurl, popt, libiconv }: +{ stdenv, fetchurl, autoreconfHook, popt, libiconv }: stdenv.mkDerivation (rec { - name = "libnatspec-0.2.6"; + name = "libnatspec-0.3.0"; src = fetchurl { url = "mirror://sourceforge/natspec/${name}.tar.bz2"; - sha256 = "0zvm9afh1skxgdv62ylrpwyykpjhhskxj0zv7yrdf7jhfdriz0y3"; + sha256 = "0wffxjlc8svilwmrcg3crddpfrpv35mzzjgchf8ygqsvwbrbb3b7"; }; + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ popt ]; meta = { -- cgit 1.4.1 From c3df9b0650af1d4a528e280261a9e2037c9062f3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:11:00 +0200 Subject: libnl: 3.2.26 -> 3.2.27 --- pkgs/os-specific/linux/libnl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix index 1e1ed0a6112c0..6e5c63a2722f5 100644 --- a/pkgs/os-specific/linux/libnl/default.nix +++ b/pkgs/os-specific/linux/libnl/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, bison, flex, pkgconfig }: -let version = "3.2.26"; in +let version = "3.2.27"; in stdenv.mkDerivation { name = "libnl-${version}"; src = fetchFromGitHub { - sha256 = "1cbqdhirn6hxmv8xkm8xp3n6ayyxw7sbi15fym167rdz0h9rkhmm"; - rev = "libnl3_2_26"; + sha256 = "1rc8plgl2ijq2pwlzinpfr06kiggjyx71r3lw505m6rvxvdac82r"; + rev = "libnl3_2_27"; repo = "libnl"; owner = "thom311"; }; -- cgit 1.4.1 From 738661953878ed0c67c23bbfffe73d05da25c190 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:26 +0200 Subject: libseccomp: 2.2.3 -> 2.3.0 --- pkgs/development/libraries/libseccomp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libseccomp/default.nix b/pkgs/development/libraries/libseccomp/default.nix index 444b68a23ee61..63a60820e3fc2 100644 --- a/pkgs/development/libraries/libseccomp/default.nix +++ b/pkgs/development/libraries/libseccomp/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, getopt }: -let version = "2.2.3"; in +let version = "2.3.0"; in stdenv.mkDerivation rec { name = "libseccomp-${version}"; src = fetchurl { url = "https://github.com/seccomp/libseccomp/releases/download/v${version}/libseccomp-${version}.tar.gz"; - sha256 = "d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e"; + sha256 = "07chdgr87aayn6sjm94y6gisl4j6si1hr9cqhs09l9bqfnky6mnp"; }; buildInputs = [ getopt ]; -- cgit 1.4.1 From 57b5c22feb90376bea9e0fe4a4c3405bb59eeacf Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 01:06:10 +0200 Subject: libsecret: 0.18 -> 0.18.5 --- pkgs/development/libraries/libsecret/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libsecret/default.nix b/pkgs/development/libraries/libsecret/default.nix index 3ceabc3f1ac3b..bb8d971d6d419 100644 --- a/pkgs/development/libraries/libsecret/default.nix +++ b/pkgs/development/libraries/libsecret/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk_doc , libgcrypt, gobjectIntrospection }: let - version = "0.18"; + version = "0.18.5"; in stdenv.mkDerivation rec { name = "libsecret-${version}"; src = fetchurl { - url = "mirror://gnome/sources/libsecret/${version}/${name}.tar.xz"; - sha256 = "1qq29c01xxjyx5sl6y5h22w8r0ff4c73bph3gfx3h7mx5mvalwqc"; + url = "mirror://gnome/sources/libsecret/0.18/${name}.tar.xz"; + sha256 = "1cychxc3ff8fp857iikw0n2s13s2mhw2dn1mr632f7w3sn6vvrww"; }; propagatedBuildInputs = [ glib ]; -- cgit 1.4.1 From dc576f940383c379692badf968800bbb228695eb Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 13 Apr 2016 00:12:59 +0200 Subject: libxmp: 4.3.11 -> 4.3.12 --- pkgs/development/libraries/libxmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix index 106fcee257f00..28584d14a8773 100644 --- a/pkgs/development/libraries/libxmp/default.nix +++ b/pkgs/development/libraries/libxmp/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "libxmp-4.3.11"; + name = "libxmp-4.3.12"; meta = with stdenv.lib; { description = "Extended module player library"; @@ -17,6 +17,6 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://sourceforge/xmp/libxmp/${name}.tar.gz"; - sha256 = "0r9qhps2a8nc850bislkgjzlamwl671r1sag1mi8k1a9gxq4n9kx"; + sha256 = "1536dfxgxl6dyvkdby8lxzi9f7y2qlwl8ylrkybips3ampcqgkhm"; }; } -- cgit 1.4.1 From 50884acd8418e157b5b1a9759095379efd0adb89 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 23:49:33 +0200 Subject: lzip: 1.16 -> 1.17 --- pkgs/tools/compression/lzip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/compression/lzip/default.nix b/pkgs/tools/compression/lzip/default.nix index b3d407c98ef19..912a0b6f0f2aa 100644 --- a/pkgs/tools/compression/lzip/default.nix +++ b/pkgs/tools/compression/lzip/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, texinfo }: stdenv.mkDerivation rec { - name = "lzip-1.16"; + name = "lzip-1.17"; buildInputs = [ texinfo ]; src = fetchurl { url = "mirror://savannah/lzip/${name}.tar.gz"; - sha256 = "0l9724rw1l3hg2ldr3n7ihqich4m9nc6y7l302bvdj4jmxdw530j"; + sha256 = "0lh3x964jjldx3piax6c2qzlhfiir5i6rnrcn8ri44rk19g8ahwl"; }; configureFlags = "CPPFLAGS=-DNDEBUG CFLAGS=-O3 CXXFLAGS=-O3"; -- cgit 1.4.1 From b701ea82e7c757e80b7867af7095e55f0be4a5da Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:52:02 +0200 Subject: netperf: 2.6.0 -> 2.7.0 --- pkgs/applications/networking/netperf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/netperf/default.nix b/pkgs/applications/networking/netperf/default.nix index 705f1455c4580..40aa326362972 100644 --- a/pkgs/applications/networking/netperf/default.nix +++ b/pkgs/applications/networking/netperf/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "netperf-2.6.0"; + name = "netperf-2.7.0"; src = fetchurl { url = "ftp://ftp.netperf.org/netperf/${name}.tar.bz2"; - sha256 = "cd8dac710d4273d29f70e8dbd09353a6362ac58a11926e0822233c0cb230323a"; + sha256 = "0nip8178pdry0pqx2gkz0sl2gcvc7qww621q43kqnp43amvg2al4"; }; meta = { -- cgit 1.4.1 From dd3c18fe2223e14444a7417012b707a679a2e808 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:50:28 +0200 Subject: openh264: 1.4.0 -> 1.5.0 --- pkgs/development/libraries/openh264/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/openh264/default.nix b/pkgs/development/libraries/openh264/default.nix index 76188d484f916..71983b30a2cb3 100644 --- a/pkgs/development/libraries/openh264/default.nix +++ b/pkgs/development/libraries/openh264/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, nasm }: stdenv.mkDerivation rec { - name = "openh264-1.4.0"; + name = "openh264-1.5.0"; src = fetchurl { - url = "https://github.com/cisco/openh264/archive/v1.4.0.tar.gz"; - sha256 = "08haj0xkyjlwbpqdinxk0cmvqw89bx89ly0kqs9lf87fy6ksgfd1"; + url = "https://github.com/cisco/openh264/archive/v1.5.0.tar.gz"; + sha256 = "1d97dh5hzmy46jamfw03flvcz8md1hxp6y5n0b787h8ks7apn1wq"; }; buildInputs = [ nasm ]; -- cgit 1.4.1 From d7338bf9d72d95a59658f811d17716f76e737ffd Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:26:44 +0200 Subject: msmtp: 1.6.2 -> 1.6.4 --- pkgs/applications/networking/msmtp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/msmtp/default.nix b/pkgs/applications/networking/msmtp/default.nix index e78605392be27..0754d4f28151f 100644 --- a/pkgs/applications/networking/msmtp/default.nix +++ b/pkgs/applications/networking/msmtp/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, openssl, pkgconfig, gnutls, gsasl, libidn, Security }: stdenv.mkDerivation rec { - version = "1.6.2"; + version = "1.6.4"; name = "msmtp-${version}"; src = fetchurl { url = "mirror://sourceforge/msmtp/${name}.tar.xz"; - sha256 = "12c7ljahb06pgn8yvvw526xvr11vnr6d4nr0apylixddpxycsvig"; + sha256 = "1kfihblm769s4hv8iah5mqynqd6hfwlyz5rcg2v423a4llic0jcv"; }; buildInputs = [ openssl pkgconfig gnutls gsasl libidn ] -- cgit 1.4.1 From 18964796e6b954be742dbaf4da0475fc3b430ca6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:25:16 +0200 Subject: mc: 4.8.12 -> 4.8.16 --- pkgs/tools/misc/mc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/mc/default.nix b/pkgs/tools/misc/mc/default.nix index 94c08fa9ba9b8..9347b5f9bbe05 100644 --- a/pkgs/tools/misc/mc/default.nix +++ b/pkgs/tools/misc/mc/default.nix @@ -2,11 +2,11 @@ , libX11, libICE, perl, zip, unzip, gettext, slang}: stdenv.mkDerivation rec { - name = "mc-4.8.12"; + name = "mc-4.8.16"; src = fetchurl { - url = http://www.midnight-commander.org/downloads/mc-4.8.12.tar.bz2; - sha256 = "15lkwcis0labshq9k8c2fqdwv8az2c87qpdqwp5p31s8gb1gqm0h"; + url = http://www.midnight-commander.org/downloads/mc-4.8.16.tar.bz2; + sha256 = "1y5apnp6sc9sn13m6816hlrr0dis1z7wsnffldsx7xlkvyas8zn3"; }; buildInputs = [ pkgconfig perl glib gpm slang zip unzip file gettext libX11 libICE e2fsprogs ]; -- cgit 1.4.1 From 1ec3e7197165dfc5ec59e6c202c1f0e3410b6441 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 22:21:49 +0200 Subject: libdvdread: 5.0.2 -> 5.0.3 --- pkgs/development/libraries/libdvdread/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libdvdread/default.nix b/pkgs/development/libraries/libdvdread/default.nix index 493be4c8f86b6..ef717fedb2270 100644 --- a/pkgs/development/libraries/libdvdread/default.nix +++ b/pkgs/development/libraries/libdvdread/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libdvdread-${version}"; - version = "5.0.2"; + version = "5.0.3"; src = fetchurl { url = "http://get.videolan.org/libdvdread/${version}/${name}.tar.bz2"; - sha256 = "82cbe693f2a3971671e7428790b5498392db32185b8dc8622f7b9cd307d3cfbf"; + sha256 = "0ayqiq0psq18rcp6f5pz82sxsq66v0kwv0y55dbrcg68plnxy71j"; }; buildInputs = [libdvdcss]; -- cgit 1.4.1 From d1998b93d765f1c7584018f43da3fa02d71b3956 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 20:29:40 +0200 Subject: lftp: 4.6.4 -> 4.7.1 --- pkgs/tools/networking/lftp/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/lftp/default.nix b/pkgs/tools/networking/lftp/default.nix index ea7ec605e2bfa..bf39c36e02b8d 100644 --- a/pkgs/tools/networking/lftp/default.nix +++ b/pkgs/tools/networking/lftp/default.nix @@ -1,17 +1,22 @@ -{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib }: +{ stdenv, fetchurl, gnutls, pkgconfig, readline, zlib, libidn }: stdenv.mkDerivation rec { - name = "lftp-4.6.4"; + name = "lftp-4.7.1"; src = fetchurl { urls = [ "http://lftp.yar.ru/ftp/${name}.tar.bz2" "http://lftp.yar.ru/ftp/old/${name}.tar.bz2" ]; - sha256 = "0zj0dd6s3nzwdawxjp0xw31ipsa4vzimmg5bzq952q2f29vd0akn"; + sha256 = "0n4l0n6ra6z5lh6v79hc0r0hhrsq0l6c47ir15vmq80sbgc9mmwv"; }; - buildInputs = [ gnutls pkgconfig readline zlib ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ gnutls readline zlib libidn ]; + + configureFlags = [ + "--with-readline=${readline}" + ]; meta = with stdenv.lib; { description = "A file transfer program supporting a number of network protocols"; -- cgit 1.4.1 From d5dd5e05f17c02bd45abf9f9ece33d2037e0cf94 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 18:15:21 +0200 Subject: glxinfo: 8.1.0 -> 8.3.0 --- pkgs/tools/graphics/glxinfo/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/glxinfo/default.nix b/pkgs/tools/graphics/glxinfo/default.nix index 35bc1e610de75..d2c2f30d6fc60 100644 --- a/pkgs/tools/graphics/glxinfo/default.nix +++ b/pkgs/tools/graphics/glxinfo/default.nix @@ -1,13 +1,13 @@ {stdenv, fetchurl, xlibsWrapper, mesa}: -let version = "8.1.0"; in +let version = "8.3.0"; in stdenv.mkDerivation { name = "glxinfo-${version}"; src = fetchurl { url = "ftp://ftp.freedesktop.org/pub/mesa/demos/${version}/mesa-demos-${version}.tar.bz2"; - sha256 = "0a58hw5850731p4smz4zqsbvyxvgjf7n5xdbs9l1wamk8q3gl0wp"; + sha256 = "1vqb7s5m3fcg2csbiz45mha1pys2xx6rhw94fcyvapqdpm5iawy1"; }; buildInputs = [xlibsWrapper mesa]; @@ -16,7 +16,7 @@ stdenv.mkDerivation { buildPhase = " cd src/xdemos - gcc glxinfo.c -o glxinfo -lGL -lX11 + gcc glxinfo.c glinfo_common.c -o glxinfo -lGL -lX11 gcc glxgears.c -o glxgears -lGL -lX11 "; -- cgit 1.4.1 From b8aaa3f130a68f6626f818a298acc8322088b85d Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:37:46 +0200 Subject: fping: 3.10 -> 3.13 --- pkgs/tools/networking/fping/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/fping/default.nix b/pkgs/tools/networking/fping/default.nix index ab935dc111180..83899c2380c3b 100644 --- a/pkgs/tools/networking/fping/default.nix +++ b/pkgs/tools/networking/fping/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "fping-3.10"; + name = "fping-3.13"; src = fetchurl { url = "http://www.fping.org/dist/${name}.tar.gz"; - sha256 = "1n2psfxgww6wg5rz8rly06xkghgp8lshx2lx6rramrigyd1fhiyd"; + sha256 = "082pis2c2ad6kkj35zmsf6xb2lm8v8hdrnjiwl529ldk3kyqxcjb"; }; meta = { -- cgit 1.4.1 From 9da6390bae7bfe6d0c23622747675fc495d47545 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:13:16 +0200 Subject: ethtool: 4.0 -> 4.5 --- pkgs/tools/misc/ethtool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix index 16af347e55100..9ffc4723dfd33 100644 --- a/pkgs/tools/misc/ethtool/default.nix +++ b/pkgs/tools/misc/ethtool/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "ethtool-4.0"; + name = "ethtool-4.5"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; - sha256 = "1zzcwn6pk8qfasalqkxg8vrhacksfa50xsq4xifw7yfjqyn8fj4h"; + sha256 = "0fyakzpcrjb7hkaj9ccpcgza7r2im17qzxy9w6xzbiss5hrk8a5v"; }; meta = with stdenv.lib; { -- cgit 1.4.1 From b5fdb8585be7755b64c4885ac1660e7bfc7163e3 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 17:05:29 +0200 Subject: di: 4.36 -> 4.37 --- pkgs/tools/system/di/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/di/default.nix b/pkgs/tools/system/di/default.nix index 9dec905379bef..9af1f8192c3ce 100644 --- a/pkgs/tools/system/di/default.nix +++ b/pkgs/tools/system/di/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "di-4.36"; + name = "di-4.37"; src = fetchurl { url = "http://gentoo.com/di/${name}.tar.gz"; - sha256 = "11kd9jawpkir6qwjciis9l5fdvgbp9yndcv4rg6k3x9x1and40zb"; + sha256 = "1ljamhbpfps5b3n6gsk11znjv2f0cqfy7imda2qmzrlb8dipjs0h"; }; makeFlags = "INSTALL_DIR=$(out)"; -- cgit 1.4.1 From 4825d4033e3f1b5ca1bfb25aa4d2debac25d8f50 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 16:12:44 +0200 Subject: ddrescue: 1.20 -> 1.21 --- pkgs/tools/system/ddrescue/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/system/ddrescue/default.nix b/pkgs/tools/system/ddrescue/default.nix index c33359eee8810..0e8e77cf5fa38 100644 --- a/pkgs/tools/system/ddrescue/default.nix +++ b/pkgs/tools/system/ddrescue/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, lzip }: stdenv.mkDerivation rec { - name = "ddrescue-1.20"; + name = "ddrescue-1.21"; src = fetchurl { url = "mirror://gnu/ddrescue/${name}.tar.lz"; - sha256 = "1gb0ak2c47nass7qdf9pnfrshcb38c318z1fx5v5v1k7l6qr7yc3"; + sha256 = "1b71hb42lh33y9843nd1mxlwkk9qh9ajvnz6ivzd1jq9lav4x7ph"; }; buildInputs = [ lzip ]; @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.all; - maintainers = with maintainers; [ iElectric ]; + maintainers = with maintainers; [ iElectric fpletz ]; }; } -- cgit 1.4.1 From 5ca86940954588d0164c1e7339a281c58551bdc8 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 15:22:08 +0200 Subject: debootstrap: 1.0.68 -> 1.0.80 --- pkgs/tools/misc/debootstrap/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/debootstrap/default.nix b/pkgs/tools/misc/debootstrap/default.nix index 9b6c35f41a471..4af6475668e7a 100644 --- a/pkgs/tools/misc/debootstrap/default.nix +++ b/pkgs/tools/misc/debootstrap/default.nix @@ -30,15 +30,16 @@ let in -stdenv.mkDerivation { +stdenv.mkDerivation rec { - name = "debootstrap-1.0.67"; + name = "debootstrap-${version}"; + version = "1.0.80"; src = fetchurl { # git clone git://git.debian.org/d-i/debootstrap.git # I'd like to use the source. However it's lacking the lanny script ? (still true?) - url = mirror://debian/pool/main/d/debootstrap/debootstrap_1.0.67.tar.gz; - sha256 = "06x5zw6fskw37qh62hvqx006319l4wgnnw8sf53ms67zpfif04ha"; + url = "mirror://debian/pool/main/d/debootstrap/debootstrap_${version}.tar.gz"; + sha256 = "06gigscd2327wsvc7n7w2m8xmaixvp4kyqhayn00qrgd9i9w34x6"; }; buildInputs = [ dpkg gettext gawk perl ]; -- cgit 1.4.1 From 7c0063bf153aa18dfb26f7f66c16d2e737aa9b45 Mon Sep 17 00:00:00 2001 From: Sebastian Gniazdowski Date: Tue, 3 May 2016 13:46:04 +0000 Subject: zsh-navigation-tools: 1.4 -> 2.0.7 --- pkgs/tools/misc/zsh-navigation-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index 499dccdb19d2d..afa29b616e7de 100644 --- a/pkgs/tools/misc/zsh-navigation-tools/default.nix +++ b/pkgs/tools/misc/zsh-navigation-tools/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zsh-navigation-tools-${version}"; - version = "1.4"; + version = "2.0.7"; src = fetchFromGitHub { owner = "psprint"; repo = "zsh-navigation-tools"; rev = "v${version}"; - sha256 = "1r24mpx57jyn201mdhd793rlhlr5r83n9137aafkgf86282ghr7y"; + sha256 = "0rfab3maha366dgvcmiqj6049wk5fynns1ygbgy4gnvavx2acvg2"; }; dontBuild = true; -- cgit 1.4.1 From bdafc6df04d650518525e8e4bb27d442a60a339a Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Tue, 3 May 2016 10:42:29 -0400 Subject: openssl: 1.0.1s -> 1.0.1t, 1.0.2g -> 1.0.2h CVE-2016-2108, high severity: Memory corruption in the ASN.1 encoder CVE-2016-2107, high severity: Padding oracle in AES-NI CBC MAC check CVE-2016-2105, low severity: EVP_EncodeUpdate overflow CVE-2016-2106, low severity: EVP_EncryptUpdate overflow CVE-2016-2109, low severity: ASN.1 BIO excessive memory allocation CVE-2016-2176, low severity: EBCDIC overread --- pkgs/development/libraries/openssl/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 1e0f419c5f73c..fa84b89bd3890 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -105,13 +105,13 @@ let in { openssl_1_0_1 = common { - version = "1.0.1s"; - sha256 = "e7e81d82f3cd538ab0cdba494006d44aab9dd96b7f6233ce9971fb7c7916d511"; + version = "1.0.1t"; + sha256 = "4a6ee491a2fdb22e519c76fdc2a628bb3cec12762cd456861d207996c8a07088"; }; openssl_1_0_2 = common { - version = "1.0.2g"; - sha256 = "b784b1b3907ce39abf4098702dade6365522a253ad1552e267a9a0e89594aa33"; + version = "1.0.2h"; + sha256 = "1d4007e53aad94a5b2002fe045ee7bb0b3d98f1a47f8b2bc851dcd1c74332919"; }; } -- cgit 1.4.1 From 6d55b2e9c0a8bd72cb4375c55a5789682cb96b1c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 3 May 2016 17:18:04 +0200 Subject: libressl: 2.2.6 -> 2.2.7, 2.3.3 -> 2.3.4 Fix multiple vulnerabilities in libcrypto relating to ASN.1 and encoding. http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.2.7-relnotes.txt http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-2.3.4-relnotes.txt --- pkgs/development/libraries/libressl/2.2.nix | 4 ++-- pkgs/development/libraries/libressl/2.3.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.2.nix b/pkgs/development/libraries/libressl/2.2.nix index 09505217ae2db..280c2e6bc943b 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.6"; + version = "2.2.7"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0kynb15l5gq1qgp3p4ncn20sc65sbl8lk89vyr07s17xrya9kq8y"; + sha256 = "1kckv36dgvvjq1ap6ahxgma4hw57zp61xsp5vjvyza5vhfrnhb3y"; }; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index 129456e6657c8..a5052a9b499d2 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.3"; + version = "2.3.4"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "1a8anm8nsfyxds03csk738m2cmzjbsb867my1rz5ij3w31k32wvn"; + sha256 = "1ag65pbvdikqj5y1w780jicl3ngi9ld2332ki6794y0gcar3a4bs"; }; enableParallelBuilding = true; -- cgit 1.4.1 From bf8130684878747be7b1cc393f8aa147c500f14f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 18:25:57 +0200 Subject: gandi-cli: pull out of python-packages.nix --- pkgs/tools/networking/gandi-cli/default.nix | 28 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 19 ------------------- 3 files changed, 30 insertions(+), 19 deletions(-) create mode 100644 pkgs/tools/networking/gandi-cli/default.nix diff --git a/pkgs/tools/networking/gandi-cli/default.nix b/pkgs/tools/networking/gandi-cli/default.nix new file mode 100644 index 0000000000000..2f95123ba2122 --- /dev/null +++ b/pkgs/tools/networking/gandi-cli/default.nix @@ -0,0 +1,28 @@ +{ stdenv, pythonPackages, fetchFromGitHub }: + +with pythonPackages; + +buildPythonPackage rec { + namePrefix = ""; + name = "gandi-cli-${version}"; + version = "0.18"; + + src = fetchFromGitHub { + sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3"; + rev = version; + repo = "gandi.cli"; + owner = "Gandi"; + }; + + propagatedBuildInputs = [ click ipy pyyaml requests ]; + + doCheck = false; # Tests try to contact the actual remote API + + meta = with stdenv.lib; { + description = "Command-line interface to the public Gandi.net API"; + homepage = http://cli.gandi.net/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ nckx ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec2523b975a5d..446501c094b69 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1594,6 +1594,8 @@ in galen = callPackage ../development/tools/galen {}; + gandi-cli = callPackage ../tools/networking/gandi-cli { }; + garmin-plugin = callPackage ../applications/misc/garmin-plugin {}; garmintools = callPackage ../development/libraries/garmintools {}; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e664ab56703c4..8edba3627e4d0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5785,25 +5785,6 @@ in modules // { }; }; - gandi-cli = buildPythonPackage rec { - name = "gandi-cli-${version}"; - version = "0.18"; - src = pkgs.fetchFromGitHub { - sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3"; - rev = version; - repo = "gandi.cli"; - owner = "Gandi"; - }; - propagatedBuildInputs = with self; [ click ipy pyyaml requests ]; - doCheck = false; # Tests try to contact the actual remote API - meta = { - homepage = http://cli.gandi.net/; - description = "Command-line interface to the public Gandi.net API"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ nckx ]; - }; - }; - gateone = buildPythonPackage rec { name = "gateone-1.2-0d57c3"; disabled = ! isPy27; -- cgit 1.4.1 From 3fe746cfc2f26c9161c659305810f14f32f4b8e5 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 19:39:53 +0200 Subject: tinc_pre: 1.1pre-git2016.01.28 -> 1.1pre-14 (#15192) split the documentation output remove the tinc-gui binary because python dependencies are not fulfilled --- pkgs/tools/networking/tinc/pre.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index 5473a637b6a3b..61e4ee281edcc 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -2,15 +2,16 @@ stdenv.mkDerivation rec { name = "tinc-${version}"; - rev = "d8ca00fe40ff4b6d87e7e64c273f536fab462356"; - version = "1.1pre-2016-01-28-${builtins.substring 0 7 rev}"; + version = "1.1pre14"; src = fetchgit { - inherit rev; + rev = "refs/tags/release-${version}"; url = "git://tinc-vpn.org/tinc"; - sha256 = "0wqgzbqlafbkmj71vhfrqwmp61g95amzd43py47kq3fn5aiybcqf"; + sha256 = "0idc4ddhz380xw26c8wwdyr0p6pibada55f0hzhnc2cz9za9x4iv"; }; + outputs = [ "out" "doc" ]; + nativeBuildInputs = [ autoreconfHook texinfo ]; buildInputs = [ ncurses readline zlib lzo openssl ]; @@ -18,6 +19,10 @@ stdenv.mkDerivation rec { substituteInPlace configure.ac --replace UNKNOWN ${version} ''; + postInstall = '' + rm $out/bin/tinc-gui + ''; + configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" -- cgit 1.4.1 From 64ef643833de573ccec8bb0d923b5d6807ef81b0 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 19 Apr 2016 23:12:09 +0200 Subject: libcap: 2.24 -> 2.25 --- pkgs/os-specific/linux/libcap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/libcap/default.nix b/pkgs/os-specific/linux/libcap/default.nix index c8484babcdf83..411044c1b925a 100644 --- a/pkgs/os-specific/linux/libcap/default.nix +++ b/pkgs/os-specific/linux/libcap/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libcap-${version}"; - version = "2.24"; + version = "2.25"; src = fetchurl { url = "mirror://kernel/linux/libs/security/linux-privs/libcap2/${name}.tar.xz"; - sha256 = "0rbc9qbqs5bp9am9s9g83wxj5k4ixps2agy9dxr1v1fwg27mdr6f"; + sha256 = "0qjiqc5pknaal57453nxcbz3mn1r4hkyywam41wfcglq3v2qlg39"; }; outputs = [ "dev" "out" ]; -- cgit 1.4.1 From 7382afac40c23841e5d6a491bd4a9412d766ecab Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 19 Apr 2016 23:12:45 +0200 Subject: libcap: replace old split with multi-output --- pkgs/os-specific/linux/libcap/default.nix | 42 +++++++++++++++++++++++++------ pkgs/os-specific/linux/libcap/man.nix | 13 ---------- pkgs/os-specific/linux/libcap/pam.nix | 15 ----------- pkgs/os-specific/linux/libcap/progs.nix | 28 --------------------- pkgs/top-level/all-packages.nix | 6 ++--- 5 files changed, 38 insertions(+), 66 deletions(-) delete mode 100644 pkgs/os-specific/linux/libcap/man.nix delete mode 100644 pkgs/os-specific/linux/libcap/pam.nix delete mode 100644 pkgs/os-specific/linux/libcap/progs.nix diff --git a/pkgs/os-specific/linux/libcap/default.nix b/pkgs/os-specific/linux/libcap/default.nix index 411044c1b925a..13d2fb7f5c5a4 100644 --- a/pkgs/os-specific/linux/libcap/default.nix +++ b/pkgs/os-specific/linux/libcap/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, attr, perl }: +{ stdenv, fetchurl, attr, perl, pam ? null }: +assert pam != null -> stdenv.isLinux; stdenv.mkDerivation rec { name = "libcap-${version}"; @@ -9,19 +10,46 @@ stdenv.mkDerivation rec { sha256 = "0qjiqc5pknaal57453nxcbz3mn1r4hkyywam41wfcglq3v2qlg39"; }; - outputs = [ "dev" "out" ]; + outputs = [ "dev" "lib" "doc" "out" ] + ++ stdenv.lib.optional (pam != null) "pam"; nativeBuildInputs = [ perl ]; + + buildInputs = [ pam ]; + propagatedBuildInputs = [ attr ]; - preConfigure = "cd libcap"; + makeFlags = [ + "lib=lib" + (stdenv.lib.optional (pam != null) "PAM_CAP=yes") + ]; + + prePatch = '' + # use relative bash path + substituteInPlace progs/capsh.c --replace "/bin/bash" "bash" + + # ensure capsh can find bash in $PATH + substituteInPlace progs/capsh.c --replace execve execvpe + ''; + + preInstall = '' + substituteInPlace Make.Rules \ + --replace 'prefix=/usr' "prefix=$lib" \ + --replace 'exec_prefix=' "exec_prefix=$out" \ + --replace 'lib_prefix=$(exec_prefix)' "lib_prefix=$lib" \ + --replace 'inc_prefix=$(prefix)' "inc_prefix=$dev" \ + --replace 'man_prefix=$(prefix)' "man_prefix=$doc" + ''; - makeFlags = "lib=lib prefix=$(out)"; + installFlags = "RAISE_SETFCAP=no"; postInstall = '' - rm "$out"/lib/*.a - mkdir -p "$dev/share/doc/${name}" - cp ../License "$dev/share/doc/${name}/License" + rm "$lib"/lib/*.a + mkdir -p "$doc/share/doc/${name}" + cp License "$doc/share/doc/${name}/" + '' + stdenv.lib.optionalString (pam != null) '' + mkdir -p "$pam/lib/security" + mv "$lib"/lib/security "$pam/lib" ''; meta = { diff --git a/pkgs/os-specific/linux/libcap/man.nix b/pkgs/os-specific/linux/libcap/man.nix deleted file mode 100644 index eeb780f095bdc..0000000000000 --- a/pkgs/os-specific/linux/libcap/man.nix +++ /dev/null @@ -1,13 +0,0 @@ -{stdenv, libcap}: - -assert stdenv.isLinux; - -stdenv.mkDerivation rec { - name = "libcap-docs-${libcap.version}"; - - inherit (libcap) src; - - makeFlags = "MANDIR=$(out)/share/man"; - - preConfigure = "cd doc"; -} diff --git a/pkgs/os-specific/linux/libcap/pam.nix b/pkgs/os-specific/linux/libcap/pam.nix deleted file mode 100644 index 3dd7cd947af22..0000000000000 --- a/pkgs/os-specific/linux/libcap/pam.nix +++ /dev/null @@ -1,15 +0,0 @@ -{stdenv, pam, libcap}: - -assert stdenv.isLinux; - -stdenv.mkDerivation rec { - name = "libcap-pam-${libcap.version}"; - - inherit (libcap) src; - - buildInputs = [ libcap pam ]; - - preConfigure = "cd pam_cap"; - - makeFlags = "${libcap.makeFlags} PAM_CAP=yes"; -} diff --git a/pkgs/os-specific/linux/libcap/progs.nix b/pkgs/os-specific/linux/libcap/progs.nix deleted file mode 100644 index e3871f15f885c..0000000000000 --- a/pkgs/os-specific/linux/libcap/progs.nix +++ /dev/null @@ -1,28 +0,0 @@ -{stdenv, libcap}: - -assert stdenv.isLinux; - -stdenv.mkDerivation rec { - name = "libcap-progs-${libcap.version}"; - - inherit (libcap) src makeFlags; - - buildInputs = [ libcap ]; - - prePatch = '' - # use relative bash path - substituteInPlace progs/capsh.c --replace "/bin/bash" "bash" - - # ensure capsh can find bash in $PATH - substituteInPlace progs/capsh.c --replace execve execvpe - ''; - - preConfigure = "cd progs"; - - installFlags = "RAISE_SETFCAP=no"; - - postInstall = '' - mkdir -p "$out/share/doc/${name}" - cp ../License "$out/share/doc/${name}/" - ''; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 446501c094b69..911326d023ebf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10913,11 +10913,11 @@ in libcap = callPackage ../os-specific/linux/libcap { }; - libcap_progs = callPackage ../os-specific/linux/libcap/progs.nix { }; + libcap_progs = libcap.out; - libcap_pam = callPackage ../os-specific/linux/libcap/pam.nix { }; + libcap_pam = if stdenv.isLinux then libcap.pam else null; - libcap_manpages = callPackage ../os-specific/linux/libcap/man.nix { }; + libcap_manpages = libcap.doc; libcap_ng = callPackage ../os-specific/linux/libcap-ng { swig = null; # Currently not using the python2/3 bindings -- cgit 1.4.1 From 5c295a4925fed2095fbdf80d8ae85da815652f0a Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 19 Apr 2016 23:25:26 +0200 Subject: libcap: Replace occurences of libcap_progs with libcap.out --- pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix | 3 +-- pkgs/tools/misc/xfstests/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix index 64210ca76051c..90dbf96972fa9 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kinit/default.nix @@ -1,13 +1,12 @@ { kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kconfig, kcrash , kdoctools, ki18n, kio, kservice, kwindowsystem, libcap -, libcap_progs }: # TODO: setuid wrapper kdeFramework { name = "kinit"; - nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools libcap.out ]; buildInputs = [ kconfig kcrash kservice libcap ]; propagatedBuildInputs = [ ki18n kio kwindowsystem ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); diff --git a/pkgs/tools/misc/xfstests/default.nix b/pkgs/tools/misc/xfstests/default.nix index 957582a3687f7..5269955ebdf97 100644 --- a/pkgs/tools/misc/xfstests/default.nix +++ b/pkgs/tools/misc/xfstests/default.nix @@ -1,5 +1,5 @@ { stdenv, acl, attr, autoreconfHook, bash, bc, coreutils, e2fsprogs, fetchgit, fio, gawk -, lib, libaio, libcap_progs, libuuid, libxfs, lvm2, openssl, perl, procps, psmisc, su +, lib, libaio, libcap, libuuid, libxfs, lvm2, openssl, perl, procps, psmisc, su , time, utillinux, which, writeScript, xfsprogs }: stdenv.mkDerivation { @@ -72,7 +72,7 @@ stdenv.mkDerivation { ln -s @out@/lib/xfstests/$f $f done - export PATH=${lib.makeBinPath [acl attr bc e2fsprogs fio gawk libcap_progs lvm2 perl procps psmisc su utillinux which xfsprogs]}:$PATH + export PATH=${lib.makeBinPath [acl attr bc e2fsprogs fio gawk libcap lvm2 perl procps psmisc su utillinux which xfsprogs]}:$PATH exec ./check "$@" ''; -- cgit 1.4.1 From a0a6a3df88e6d1d3542dee0e8d7c8f71fb8293b9 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Fri, 29 Apr 2016 04:42:30 +0200 Subject: libcap: Move old libcap_* aliases to aliases.nix --- pkgs/top-level/aliases.nix | 3 +++ pkgs/top-level/all-packages.nix | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 266313c81e109..964e784134415 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -54,6 +54,9 @@ doNotDisplayTwice rec { joseki = apache-jena-fuseki; # added 2016-02-28 jquery_ui = jquery-ui; # added 2014-09-07 libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19 + libcap_manpages = libcap.doc; # added 2016-04-29 + libcap_pam = if stdenv.isLinux then libcap.pam else null; # added 2016-04-29 + libcap_progs = libcap.out; # added 2016-04-29 libtidy = html-tidy; # added 2014-12-21 links = links2; # added 2016-01-31 lttngTools = lttng-tools; # added 2014-07-31 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 911326d023ebf..66a60a9cfa462 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10913,12 +10913,6 @@ in libcap = callPackage ../os-specific/linux/libcap { }; - libcap_progs = libcap.out; - - libcap_pam = if stdenv.isLinux then libcap.pam else null; - - libcap_manpages = libcap.doc; - libcap_ng = callPackage ../os-specific/linux/libcap-ng { swig = null; # Currently not using the python2/3 bindings python2 = null; # Currently not using the python2 bindings -- cgit 1.4.1 From 959472a824f5a86feab01aac9a6e1e09235f9556 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:48:39 +0200 Subject: nginx: 1.8.1 -> 1.10.0 Changes: http://nginx.org/en/CHANGES-1.10 --- pkgs/servers/http/nginx/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix index b3bc092dc401c..cb845220543b3 100644 --- a/pkgs/servers/http/nginx/default.nix +++ b/pkgs/servers/http/nginx/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, fetchFromGitHub, openssl, zlib, pcre, libxml2, libxslt, expat , gd, geoip +, withStream ? false , modules ? [] , hardening ? true }: @@ -7,10 +8,10 @@ with stdenv.lib; let - version = "1.8.1"; + version = "1.10.0"; mainSrc = fetchurl { url = "http://nginx.org/download/nginx-${version}.tar.gz"; - sha256 = "1dwpyw4pvhj68vxramqxm8f79pqz9lrm8mvifbn49h3615ikqjwg"; + sha256 = "0kdyqa5xaxvhz6y75ixs05mzygk3kszzdq5h0gnlrg35vp1lgmlf"; }; in @@ -24,11 +25,8 @@ stdenv.mkDerivation rec { ++ concatMap (mod: mod.inputs or []) modules; configureFlags = [ - "--with-select_module" - "--with-poll_module" - "--with-threads" "--with-http_ssl_module" - "--with-http_spdy_module" + "--with-http_v2_module" "--with-http_realip_module" "--with-http_addition_module" "--with-http_xslt_module" @@ -48,11 +46,11 @@ stdenv.mkDerivation rec { "--with-ipv6" # Install destination problems # "--with-http_perl_module" - ] ++ optionals (elem stdenv.system (with platforms; linux ++ freebsd)) - [ "--with-file-aio" "--with-aio_module" ] + ] ++ optional withStream "--with-stream" + ++ optional (elem stdenv.system (with platforms; linux ++ freebsd)) "--with-file-aio" ++ map (mod: "--add-module=${mod.src}") modules; - NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized"; + NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations"; preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules) + optionalString (hardening && (stdenv.cc.cc.isGNU or false)) '' @@ -63,6 +61,10 @@ stdenv.mkDerivation rec { '' ; + postInstall = '' + mv $out/sbin $out/bin + ''; + meta = { description = "A reverse proxy and lightweight webserver"; homepage = http://nginx.org; -- cgit 1.4.1 From b95eebec653c749cbc2c2b3932d5b075d566e9b5 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 20:03:14 +0200 Subject: connman: 1.31 -> 1.32 fetch release tarball instead of git checkout and drop autotools This update is compatible with iptables 1.6.0 (see #12178) --- pkgs/tools/networking/connman/default.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/tools/networking/connman/default.nix b/pkgs/tools/networking/connman/default.nix index 7af692f782e8a..f8abdb33d9d6d 100644 --- a/pkgs/tools/networking/connman/default.nix +++ b/pkgs/tools/networking/connman/default.nix @@ -1,26 +1,25 @@ -{ stdenv, fetchgit, autoconf, automake, libtool, pkgconfig, openconnect, file, +{ stdenv, fetchurl, pkgconfig, openconnect, file, openvpn, vpnc, glib, dbus, iptables, gnutls, polkit, - wpa_supplicant, readline6, pptp, ppp, tree }: + wpa_supplicant, readline6, pptp, ppp }: stdenv.mkDerivation rec { name = "connman-${version}"; - version = "1.31"; - src = fetchgit { - url = "git://git.kernel.org/pub/scm/network/connman/connman.git"; - rev = "refs/tags/${version}"; - sha256 = "90dab6b11841cb4b6400711d234b59fb4fad4e8778bed6e7ad3ac7ac135d6893"; + version = "1.32"; + src = fetchurl { + url = "mirror://kernel/linux/network/connman/${name}.tar.xz"; + sha256 = "0k4kw2j78gwxf0rq79a099qkzl6wi4v5i7rfs4rn0si0fd68d19i"; }; - buildInputs = [ autoconf automake libtool pkgconfig openconnect polkit - file openvpn vpnc glib dbus iptables gnutls - wpa_supplicant readline6 pptp ppp tree ]; + buildInputs = [ openconnect polkit + openvpn vpnc glib dbus iptables gnutls + wpa_supplicant readline6 pptp ppp ]; + + nativeBuildInputs = [ pkgconfig file ]; preConfigure = '' export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant - ./bootstrap + export PPPD=${ppp}/sbin/pppd sed -i "s/\/usr\/bin\/file/file/g" ./configure - substituteInPlace configure --replace /usr/sbin/pptp ${pptp}/sbin/pptp - substituteInPlace configure --replace /usr/sbin/pppd ${ppp}/sbin/pppd ''; configureFlags = [ @@ -43,6 +42,7 @@ stdenv.mkDerivation rec { "--enable-tools" "--enable-datafiles" "--enable-pptp" + "--with-pptp=${pptp}/sbin/pptp" ]; postInstall = '' -- cgit 1.4.1 From d74335da85c33ef9d0539a94cd9e0f209cb7ff98 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 20:05:57 +0200 Subject: connman: make dependency on awk explicit --- pkgs/tools/networking/connman/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/connman/default.nix b/pkgs/tools/networking/connman/default.nix index f8abdb33d9d6d..c9380761f9fad 100644 --- a/pkgs/tools/networking/connman/default.nix +++ b/pkgs/tools/networking/connman/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openconnect, file, +{ stdenv, fetchurl, pkgconfig, openconnect, file, gawk, openvpn, vpnc, glib, dbus, iptables, gnutls, polkit, wpa_supplicant, readline6, pptp, ppp }: @@ -14,11 +14,12 @@ stdenv.mkDerivation rec { openvpn vpnc glib dbus iptables gnutls wpa_supplicant readline6 pptp ppp ]; - nativeBuildInputs = [ pkgconfig file ]; + nativeBuildInputs = [ pkgconfig file gawk ]; preConfigure = '' export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant export PPPD=${ppp}/sbin/pppd + export AWK=${gawk}/bin/gawk sed -i "s/\/usr\/bin\/file/file/g" ./configure ''; -- cgit 1.4.1 From f72a2faa28580c6a19b5cc3a111f4a198f1a80fc Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 15:14:50 -0300 Subject: gtk-xfce-engine: 2.10.1 -> 3.2.0 --- pkgs/desktops/xfce/core/gtk-xfce-engine.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix index b66faf2390b9e..25ba1e252d466 100644 --- a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix +++ b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { p_name = "gtk-xfce-engine"; - ver_maj = "2.10"; - ver_min = "1"; + ver_maj = "3.2"; + ver_min = "0"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; - sha256 = "4a92910205881f707f2cc8d3c9b00a95feb58eb9084d932c841f3ed027f7063d"; + sha256 = "1va71f3gpl8gikfkmqsd5ikgp7qj8b64jii2l98g1ylnv8xrqp47"; }; name = "${p_name}-${ver_maj}.${ver_min}"; -- cgit 1.4.1 From f0da9ff4128c1c4d3fbee2c4691adcac4bc24e6f Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 15:18:23 -0300 Subject: gtk-xfce-engine: add support to Gtk3 --- pkgs/desktops/xfce/core/gtk-xfce-engine.nix | 6 ++++-- pkgs/desktops/xfce/default.nix | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix index 25ba1e252d466..6e5ac7c55ea1c 100644 --- a/pkgs/desktops/xfce/core/gtk-xfce-engine.nix +++ b/pkgs/desktops/xfce/core/gtk-xfce-engine.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool, gtk }: +{ stdenv, fetchurl, pkgconfig, intltool, gtk, withGtk3 ? false, gtk3 }: stdenv.mkDerivation rec { p_name = "gtk-xfce-engine"; @@ -11,7 +11,9 @@ stdenv.mkDerivation rec { }; name = "${p_name}-${ver_maj}.${ver_min}"; - buildInputs = [ pkgconfig intltool gtk ]; + buildInputs = [ pkgconfig intltool gtk ] ++ stdenv.lib.optional withGtk3 gtk3; + + configureFlags = stdenv.lib.optional withGtk3 "--enable-gtk3"; meta = { homepage = http://www.xfce.org/; diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 96e6c55162a54..3ea3721362bcf 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -21,7 +21,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od exo = callPackage ./core/exo.nix { }; garcon = callPackage ./core/garcon.nix { }; - gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { }; # ToDo: when should be used? + gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix { withGtk3 = true; }; # ToDo: when should be used? libxfce4ui = callPackage ./core/libxfce4ui.nix { }; libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; }; libxfce4util = callPackage ./core/libxfce4util.nix { }; -- cgit 1.4.1 From 980bca286e4bc509fb4321b75481d9e683e5a1b4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 3 May 2016 21:29:16 +0300 Subject: gcc 4.5, 4.6: Remove broken update-gcc.sh symlinks --- pkgs/development/compilers/gcc/4.5/update-gcc.sh | 1 - pkgs/development/compilers/gcc/4.6/update-gcc.sh | 1 - 2 files changed, 2 deletions(-) delete mode 120000 pkgs/development/compilers/gcc/4.5/update-gcc.sh delete mode 120000 pkgs/development/compilers/gcc/4.6/update-gcc.sh diff --git a/pkgs/development/compilers/gcc/4.5/update-gcc.sh b/pkgs/development/compilers/gcc/4.5/update-gcc.sh deleted file mode 120000 index 907772b2af8af..0000000000000 --- a/pkgs/development/compilers/gcc/4.5/update-gcc.sh +++ /dev/null @@ -1 +0,0 @@ -../4.4/update-gcc.sh \ No newline at end of file diff --git a/pkgs/development/compilers/gcc/4.6/update-gcc.sh b/pkgs/development/compilers/gcc/4.6/update-gcc.sh deleted file mode 120000 index 907772b2af8af..0000000000000 --- a/pkgs/development/compilers/gcc/4.6/update-gcc.sh +++ /dev/null @@ -1 +0,0 @@ -../4.4/update-gcc.sh \ No newline at end of file -- cgit 1.4.1 From 0bc13e3af21e428a96082770347455523c87b726 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Fri, 1 Jan 2016 02:54:56 +0100 Subject: iptables: 1.4.21 -> 1.6.0 --- pkgs/os-specific/linux/iptables/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/iptables/default.nix b/pkgs/os-specific/linux/iptables/default.nix index ba3ee64f08ba9..8c815029661b1 100644 --- a/pkgs/os-specific/linux/iptables/default.nix +++ b/pkgs/os-specific/linux/iptables/default.nix @@ -1,14 +1,22 @@ -{stdenv, fetchurl}: +{stdenv, fetchurl, bison, flex, libnetfilter_conntrack, libnftnl, libmnl}: stdenv.mkDerivation rec { name = "iptables-${version}"; - version = "1.4.21"; # before updating check #12178 + version = "1.6.0"; src = fetchurl { url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2"; - sha256 = "1q6kg7sf0pgpq0qhab6sywl23cngxxfzc9zdzscsba8x09l4q02j"; + sha256 = "0q0w1x4aijid8wj7dg1ny9fqwll483f1sqw7kvkskd8q1c52mdsb"; }; + nativeBuildInputs = [bison flex]; + + buildInputs = [libnetfilter_conntrack libnftnl libmnl]; + + preConfigure = '' + export NIX_LDFLAGS="$NIX_LDFLAGS -lmnl -lnftnl" + ''; + configureFlags = '' --enable-devel --enable-shared -- cgit 1.4.1 From 82c141b9995c6bfaf538474acaa2c5d0c3a256cf Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 3 May 2016 20:29:45 +0200 Subject: Revert "iptables: add 1.6 branch (init 1.6.0). Not making it the default this time." This reverts commit 74f7916a9a4c0ebe8d7c5d5861c5694ea2d1583e. Time to make it the default. --- pkgs/os-specific/linux/iptables/1.6.nix | 33 --------------------------------- pkgs/top-level/all-packages.nix | 5 ----- 2 files changed, 38 deletions(-) delete mode 100644 pkgs/os-specific/linux/iptables/1.6.nix diff --git a/pkgs/os-specific/linux/iptables/1.6.nix b/pkgs/os-specific/linux/iptables/1.6.nix deleted file mode 100644 index 88821a15d73ef..0000000000000 --- a/pkgs/os-specific/linux/iptables/1.6.nix +++ /dev/null @@ -1,33 +0,0 @@ -{stdenv, fetchurl, bison, flex, libnetfilter_conntrack, libnftnl, libmnl}: - -stdenv.mkDerivation rec { - name = "iptables-${version}"; - version = "1.6.0"; - - src = fetchurl { - url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2"; - sha256 = "0q0w1x4aijid8wj7dg1ny9fqwll483f1sqw7kvkskd8q1c52mdsb"; - }; - - nativeBuildInputs = [bison flex]; - - buildInputs = [libnetfilter_conntrack libnftnl libmnl]; - - preConfigure = '' - export NIX_LDFLAGS="$NIX_LDFLAGS -lmnl -lnftnl" - ''; - - configureFlags = '' - --enable-devel - --enable-shared - ''; - - meta = { - description = "A program to configure the Linux IP packet filtering ruleset"; - homepage = http://www.netfilter.org/projects/iptables/index.html; - platforms = stdenv.lib.platforms.linux; - downloadPage = "http://www.netfilter.org/projects/iptables/files/"; - updateWalker = true; - inherit version; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 446501c094b69..26cfdafea137f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10436,11 +10436,6 @@ in }; iptables = callPackage ../os-specific/linux/iptables { }; - # The freshest version — possibly crashing connmand? - # https://github.com/NixOS/nixpkgs/commit/fe00c8a83f696e3430ee4aa3fc850f171da52450 - iptables_16 = callPackage ../os-specific/linux/iptables/1.6.nix { - flex = flex_2_5_35; - }; ipset = callPackage ../os-specific/linux/ipset { }; -- cgit 1.4.1 From 147d942b545c7d6c020534fd2987d5e33dc00b6f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 3 May 2016 13:34:50 -0500 Subject: julia: remove ttuegel from maintainers ttuegel has not used julia in some time --- pkgs/development/compilers/julia/git.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index b6d917865d838..00c4730cf85ff 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -164,7 +164,7 @@ stdenv.mkDerivation rec { description = "High-level performance-oriented dynamical language for technical computing"; homepage = "http://julialang.org/"; license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ raskin ttuegel ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; }; } -- cgit 1.4.1 From ff6a98612cc3f1fe33b01be42efa3d5f4515b149 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:13:42 +0200 Subject: seccure: 0.4 -> 0.5 --- pkgs/tools/security/seccure/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/seccure/default.nix b/pkgs/tools/security/seccure/default.nix index 33a77c078446f..46d2113b1dace 100644 --- a/pkgs/tools/security/seccure/default.nix +++ b/pkgs/tools/security/seccure/default.nix @@ -1,14 +1,15 @@ -{stdenv, fetchurl, libgcrypt}: +{ stdenv, fetchurl, libgcrypt }: stdenv.mkDerivation rec { - name = "seccure-0.4"; + name = "seccure-${version}"; + version = "0.5"; src = fetchurl { url = "http://point-at-infinity.org/seccure/${name}.tar.gz"; - sha256 = "33d690a7034ee349bce4911a8b7c73e6e3cd13a140f429e9e628d5cd5a3bb955"; + sha256 = "0nwnk3hfhgvf5xr0xipbh6smfnya22wphc5rj0vgi5d0zr5cwrk5"; }; - buildInputs = [libgcrypt]; + buildInputs = [ libgcrypt ]; preConfigure = '' sed -e s@/usr/@$out/@g -i Makefile -- cgit 1.4.1 From d4d6d9d3d2f85892dfa3fabab2dfe5f250b054b7 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:17:14 +0200 Subject: ortp: 0.24.2 -> 0.25.0 --- pkgs/development/libraries/ortp/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ortp/default.nix b/pkgs/development/libraries/ortp/default.nix index 746f10eebed14..15bd39a031f3a 100644 --- a/pkgs/development/libraries/ortp/default.nix +++ b/pkgs/development/libraries/ortp/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "ortp-0.24.2"; + name = "ortp-${version}"; + version = "0.25.0"; src = fetchurl { url = "mirror://savannah/linphone/ortp/sources/${name}.tar.gz"; - sha256 = "05k6ianphr533qnjwxsv7jnh7fb2sq0dj1pdy1bk2w5khmlwfdyb"; + sha256 = "16ldzrn1268dr6kdl8mibg2knd6w75a1v0iqfsgk5zdig5mq5sqd"; }; meta = with stdenv.lib; { -- cgit 1.4.1 From 31253ad95762deba0b7b91d9a704689b033b3350 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 19:23:31 +0200 Subject: cdrtools: 3.02a03 -> 3.02a06 --- pkgs/applications/misc/cdrtools/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/cdrtools/default.nix b/pkgs/applications/misc/cdrtools/default.nix index 55bcfd99e17df..be6989b7e33ac 100644 --- a/pkgs/applications/misc/cdrtools/default.nix +++ b/pkgs/applications/misc/cdrtools/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, acl, libcap }: stdenv.mkDerivation rec { - name = "cdrtools-3.02a03"; + name = "cdrtools-${version}"; + version = "3.02a06"; src = fetchurl { url = "mirror://sourceforge/cdrtools/${name}.tar.bz2"; - sha256 = "02gjxib0sgzsdicnb7496x0a175w1sb34v8zc9mdi8cfw7skw996"; + sha256 = "1cayhfbhj5g2vgmkmq5scr23k0ka5fsn0dhn0n9yllj386csnygd"; }; patches = [ ./fix-paths.patch ]; -- cgit 1.4.1 From e7d3166656af0d98da9f59c78e2213cec842d743 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 3 May 2016 22:05:11 +0200 Subject: nixos/tests/netboot: Fix evaluation error Regression introduced by dfe608c8a2ecfdf0ab2838a967440207250a0b95. The commit turns the two arguments into one attrset argument so we need to adapt that to use the new calling convention. Signed-off-by: aszlig --- nixos/tests/boot.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index a138ba4bcf087..af7db5aa8164d 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -64,11 +64,14 @@ in { ''; destination = "/boot.ipxe"; }; - ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [ - config.system.build.netbootRamdisk - config.system.build.kernel - ipxeScriptDir - ]; + ipxeBootDir = pkgs.symlinkJoin { + name = "ipxeBootDir"; + paths = [ + config.system.build.netbootRamdisk + config.system.build.kernel + ipxeScriptDir + ]; + }; in makeTest { name = "boot-netboot"; @@ -81,4 +84,4 @@ in { $machine->shutdown; ''; }; -} \ No newline at end of file +} -- cgit 1.4.1 From 51e5beca4267d4138e9ac8babb744a65f8c4bed0 Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Tue, 3 May 2016 22:08:57 +0200 Subject: jenkins service: remove unneeded (and brittle) part of postStart The current postStart code holds Jenkins off the "started" state until Jenkins becomes idle. But it should be enough to wait until Jenkins start handling HTTP requests to consider it "started". More reasons why the current approach is bad and we should remove it, from @coreyoconnor in https://github.com/NixOS/nixpkgs/issues/14991#issuecomment-216572571: 1. Repeatedly curling for a specific human-readable string to determine "Active" is fragile. For instance, what happens when jenkins is localized? 2. The time jenkins takes to initializes is variable. This (at least used to) depend on the number of jobs and any plugin upgrades requested. 3. Jenkins can be requested to restart from the UI. Which will not affect the status of the service. This means that the service being "active" does not imply jenkins is initialized. Downstream services cannot assume jenkins is initialized if the service is active. Might as well accept that and remove the initialized test from service startup. Fixes #14991. --- nixos/modules/services/continuous-integration/jenkins/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index 6fd39e68b1d9c..d30b27e9df4dc 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -164,14 +164,6 @@ in { until ${pkgs.curl.bin}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} ; do sleep 10 done - while true ; do - index=`${pkgs.curl.bin}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix}` - if [[ !("$index" =~ 'Please wait while Jenkins is restarting' || - "$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then - exit 0 - fi - sleep 30 - done ''; serviceConfig = { -- cgit 1.4.1 From 78b6e8c3199c1ce8ad4744cb90b47e94739083da Mon Sep 17 00:00:00 2001 From: Bjørn Forsman Date: Tue, 3 May 2016 22:27:51 +0200 Subject: jenkins service: improve curl call in postStart * Perform HTTP HEAD request instead of full GET (lighter weight) * Don't log output of curl to the journal (it's noise/debug) * Use explicit http:// URL scheme * Reduce poll interval from 10s to 2s (respond to state changes quicker). Probably not relevant on boot (lots of services compete for the CPU), but online service restarts/reloads should be quicker. * Pass --fail to curl (should be more robust against false positives) * Use 4 space indent for shell code. --- nixos/modules/services/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index d30b27e9df4dc..4a6ffb9c26166 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -161,8 +161,8 @@ in { ''; postStart = '' - until ${pkgs.curl.bin}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} ; do - sleep 10 + until ${pkgs.curl.bin}/bin/curl -s -L --fail --head http://${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} >/dev/null; do + sleep 2 done ''; -- cgit 1.4.1 From db3ee01ab632cd923b14d0ce2a55229aa2483f3c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 23:41:33 +0200 Subject: geolite-legacy: 2016-05-02 -> 2016-05-03 --- pkgs/data/misc/geolite-legacy/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 3792047aea1f7..d9693136bf24e 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,20 +8,20 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-05-02"; + version = "2016-05-03"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "0g34nwilhim73f0qp0yq3lfx54c42wy70ra4dkmwlfddyq3ln0xd"; + "1fcbbbdqbxgqmgk61awzbbnd7d9yr2hnfmbc5z5z5s77aw8i8nkj"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" - "12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na"; + "06cx1fza11g25ckjkih6p4awk2pg0jwr421fh8bijwx6i550paca"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "04bi7zmmm7v9gl9vhxh0fvqfhmg9ja1lan4ff0njx7qs7lz3ak88"; + "1246328q4bhrri15pywkhbaz362ch1vnfw3h0qr8wn8f6ilix6nd"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "1sr2yapsfmdpl4zpf8i5rl3k65dgbq7bb1615g6wf60yw9ngh76x"; + "1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" "04gyrb5qyy3i1p9lgnls90irq3s64y5qfcqj91nx4x68r7dixnai"; -- cgit 1.4.1 From 571e9b5f1ffe792d4b6d859ca7832b689ca3ea6a Mon Sep 17 00:00:00 2001 From: Mitchell Pleune Date: Tue, 3 May 2016 17:39:18 -0400 Subject: bspwm: add _JAVA_AWT_WM_NONREPARENTING=1 bspwm is not in java's internal list of non-reparrenting window managers. See https://awesomewm.org/wiki/Problems_with_Java --- nixos/modules/services/x11/window-managers/bspwm.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/window-managers/bspwm.nix b/nixos/modules/services/x11/window-managers/bspwm.nix index 271b1b6cf5da3..03a1b7a72e88b 100644 --- a/nixos/modules/services/x11/window-managers/bspwm.nix +++ b/nixos/modules/services/x11/window-managers/bspwm.nix @@ -38,6 +38,7 @@ in start = if cfg.startThroughSession then cfg.sessionScript else '' + export _JAVA_AWT_WM_NONREPARENTING=1 SXHKD_SHELL=/bin/sh ${pkgs.sxhkd}/bin/sxhkd -f 100 & ${pkgs.bspwm}/bin/bspwm ''; -- cgit 1.4.1 From 518b9abfd5db370d9e446a5741e4c14122aed4fd Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 19:03:46 -0300 Subject: xfce4-whiskermenu-plugin: the xfce4-panel binary is in ${xfce4panel.out} --- pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix index ff4e89a23cf36..8ba542b398e20 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { preFixup = '' substituteInPlace $out/bin/xfce4-popup-whiskermenu \ - --replace $out/bin/xfce4-panel ${xfce4panel}/bin/xfce4-panel + --replace $out/bin/xfce4-panel ${xfce4panel.out}/bin/xfce4-panel ''; meta = { -- cgit 1.4.1 From b1bf11881a9e2f17c410f5ba8d03756daf71c975 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 3 May 2016 22:54:06 +0100 Subject: spdlog: init at 292bdc5 --- pkgs/development/libraries/spdlog/default.nix | 36 +++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/libraries/spdlog/default.nix diff --git a/pkgs/development/libraries/spdlog/default.nix b/pkgs/development/libraries/spdlog/default.nix new file mode 100644 index 0000000000000..1c3952e7adfb8 --- /dev/null +++ b/pkgs/development/libraries/spdlog/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchFromGitHub, cmake }: + +stdenv.mkDerivation rec { + name = "spdlog-${version}"; + version = stdenv.lib.strings.substring 0 7 rev; + rev = "292bdc5eb4929f183c78d2c67082b715306f81c9"; + + src = fetchFromGitHub { + owner = "gabime"; + repo = "spdlog"; + inherit rev; + sha256 = "1b6b0c81a8hisaibqlzj5mrk3snrfl8p5sqa056q2f02i62zksbn"; + }; + + buildInputs = [ cmake ]; + + # cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=ON" ]; + + outputs = [ "out" "doc" ]; + + postInstall = '' + mkdir -p $out/share/doc/spdlog + cp -rv ../example $out/share/doc/spdlog + ''; + + meta = with stdenv.lib; { + description = "Very fast, header only, C++ logging library."; + homepage = https://github.com/gabime/spdlog; + license = licenses.mit; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.all; + + # This is a header-only library, no point in hydra building it: + hydraPlatforms = []; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ffcbeddfb93f7..5f901adb856ce 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16709,6 +16709,8 @@ in bullet = callPackage ../development/libraries/bullet {}; + spdlog = callPackage ../development/libraries/spdlog { }; + dart = callPackage ../development/interpreters/dart { }; httrack = callPackage ../tools/backup/httrack { }; -- cgit 1.4.1 From 41b5de4773e0c5e76acd663aa347288e84b52dc0 Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 19:13:09 -0300 Subject: xfce4-whiskermenu-plugin: 1.5.2 -> 1.5.3 --- .../xfce/panel-plugins/xfce4-whiskermenu-plugin.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix index 8ba542b398e20..e4c4486558322 100644 --- a/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix +++ b/pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix @@ -4,21 +4,22 @@ with stdenv.lib; stdenv.mkDerivation rec { p_name = "xfce4-whiskermenu-plugin"; - ver_maj = "1.5"; - ver_min = "2"; - rev = "d08418c8d55edfacef190ec14e03e1e9a6988101"; + version = "1.5.3"; - name = "${p_name}-${ver_maj}.${ver_min}"; + name = "${p_name}-${version}"; src = fetchFromGitHub { owner = "gottcode"; repo = "xfce4-whiskermenu-plugin"; - inherit rev; - sha256 = "0icphm6bm5p3csh9kwyyvkj2y87shrs12clfifbhv35dm0skb2dx"; + rev = "v${version}"; + sha256 = "07gmf9x3pw6xajklj0idahbnv0psnkhiqhb88bmkp344jirsx6ba"; }; - buildInputs = [ cmake pkgconfig intltool libxfce4util libxfcegui4 xfce4panel - gtk exo garcon ]; + nativeBuildInputs = [ cmake pkgconfig intltool ]; + + buildInputs = [ libxfce4util libxfcegui4 xfce4panel gtk exo garcon ]; + + enableParallelBuilding = true; preFixup = '' substituteInPlace $out/bin/xfce4-popup-whiskermenu \ @@ -27,7 +28,8 @@ stdenv.mkDerivation rec { meta = { homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; - description = "Whisker Menu is an alternate application launcher for Xfce"; + description = "Alternate application launcher for Xfce"; + license = licenses.gpl2Plus; platforms = platforms.linux; maintainers = [ maintainers.pjbarnoy ]; }; -- cgit 1.4.1 From d6e4c1b750be049227870bc635d28acc46033d0e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 4 May 2016 00:33:27 +0200 Subject: thinkfan: install manual, README and examples READMEs usually just waste those precious kilobytes, but both the manual page and --help output refer to this one quite a bit. --- pkgs/tools/system/thinkfan/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/system/thinkfan/default.nix b/pkgs/tools/system/thinkfan/default.nix index 3e97a4b64a311..170d3b3305edd 100644 --- a/pkgs/tools/system/thinkfan/default.nix +++ b/pkgs/tools/system/thinkfan/default.nix @@ -18,14 +18,17 @@ stdenv.mkDerivation rec { ''; installPhase = '' - mkdir -p $out/bin; - mv thinkfan $out/bin/; + install -Dm755 {.,$out/bin}/thinkfan + + cd $sourceRoot + install -Dm644 {.,$out/share/doc/thinkfan}/README + cp -R examples $out/share/doc/thinkfan + install -Dm644 {.,$out/share/man/man1}/thinkfan.1 ''; meta = { - description = ""; license = stdenv.lib.licenses.gpl3; - homepage = "http://thinkfan.sourceforge.net/"; + homepage = http://thinkfan.sourceforge.net/; maintainers = with stdenv.lib.maintainers; [ iElectric ]; platforms = stdenv.lib.platforms.linux; }; -- cgit 1.4.1 From 63a63c53d6de08543c08b19f7a62b930b91d19d0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 3 May 2016 23:40:55 +0200 Subject: poppler: 0.36.0 -> 0.43.0 --- pkgs/development/libraries/poppler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index ebcdcc2b3efdf..ae20cb4090c44 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -5,8 +5,8 @@ }: let # beware: updates often break cups_filters build - version = "0.36.0"; # even major numbers are stable - sha256 = "13i440kv873wgmw50rs4d1v05cj0r7bqnghd70hp9vy44dxhdk4k"; + version = "0.43.0"; # even major numbers are stable + sha256 = "0mi4zf0pz3x3fx3ir7szz1n57nywgbpd4mp2r7mvf47f4rmf4867"; in stdenv.mkDerivation rec { name = "poppler-${suffix}-${version}"; -- cgit 1.4.1 From 0bd31bce10dbcfa90a5e82f4f6c1bdc1252d02ae Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 3 May 2016 19:24:40 +0200 Subject: grsecurity: drop support for 4.4 kernels From now on, only the testing branch of grsecurity will be supported. Additionally, use only patches from upstream. It's impossible to provide meaningful support for grsecurity stable. First, because building and testing \(m \times n \times z) [1], packages is infeasible. Second, because stable patches are only available from upstream for-pay, making us reliant on third-parties for patches. In addition to creating yet more work for the maintainers, using stable patches provided by a third-party goes against the wishes of upstream. nixpkgs provides the tools necessary to build grsecurity kernels for any version the user chooses, however, provided they pay for, or otherwise acquire, the patch themselves. Eventually, we'll want to remove the now obsolete top-level attributes, but leave them in for now to smoothe migration (they have been removed from top-level/release.nix, though, because it makes no sense to have them there). [1]: where \(m\) is the number of grsecurity flavors, \(n\) is the number of kernel versions, and z is the size of the `linuxPackages` set --- pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix | 2 ++ pkgs/os-specific/linux/kernel/patches.nix | 4 +--- pkgs/top-level/release.nix | 3 --- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix index 36181308a8bea..e51fe6423680b 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix @@ -1,5 +1,7 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: +throw "grsecurity stable is no longer supported; please update your configuration" + import ./generic.nix (args // rec { version = "4.4.5"; extraMeta.branch = "4.4"; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 14b0692dbada0..c4bc451339501 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -23,9 +23,7 @@ let { name = "grsecurity-${grversion}-${kversion}"; inherit grversion kernel patches kversion revision; patch = fetchurl { - url = if branch == "stable" - then "https://github.com/kdave/grsecurity-patches/blob/master/grsecurity_patches/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true" - else "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; + url = "https://grsecurity.net/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch"; inherit sha256; }; features.grsecurity = true; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 763e891173c7b..8b246c5340f69 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -323,9 +323,6 @@ let }; linuxPackages_testing = { }; - linuxPackages_grsec_stable_desktop = { }; - linuxPackages_grsec_stable_server = { }; - linuxPackages_grsec_stable_server_xen = { }; linuxPackages_grsec_testing_desktop = { }; linuxPackages_grsec_testing_server = { }; linuxPackages_grsec_testing_server_xen = { }; -- cgit 1.4.1 From 05eae0242d7483ffe29c006ce6b3b8b238bce284 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 4 May 2016 01:19:27 +0200 Subject: imagemagick: 6.9.3-8 -> 6.9.3-9 --- pkgs/applications/graphics/ImageMagick/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index 78837f55af4ce..6957002f6e81a 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -13,7 +13,7 @@ in stdenv.mkDerivation rec { name = "imagemagick-${version}"; - version = "6.9.3-8"; + version = "6.9.3-9"; src = fetchurl { urls = [ @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { # the original source above removes tarballs quickly "http://distfiles.macports.org/ImageMagick/ImageMagick-${version}.tar.xz" ]; - sha256 = "129s4cwp6cbhgsr3xr8186q5j02zpbk6kqfk4j7ayb563zsrdb4h"; + sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf"; }; outputs = [ "out" "doc" ]; -- cgit 1.4.1 From 69c14985d034cf1b9add0fdcbacc4d997a576d11 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 4 May 2016 01:20:08 +0200 Subject: imagemagick: Disable insecure coders (ImageTragick) See: * https://imagetragick.com/ * https://www.imagemagick.org/discourse-server/viewtopic.php?f=4&t=29588 --- pkgs/applications/graphics/ImageMagick/default.nix | 2 ++ pkgs/applications/graphics/ImageMagick/imagetragick.patch | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 pkgs/applications/graphics/ImageMagick/imagetragick.patch diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix index 6957002f6e81a..b97eb5a6580ac 100644 --- a/pkgs/applications/graphics/ImageMagick/default.nix +++ b/pkgs/applications/graphics/ImageMagick/default.nix @@ -24,6 +24,8 @@ stdenv.mkDerivation rec { sha256 = "0q19jgn1iv7zqrw8ibxp4z57iihrc9kyb09k2wnspcacs6vrvinf"; }; + patches = [ ./imagetragick.patch ]; + outputs = [ "out" "doc" ]; enableParallelBuilding = true; diff --git a/pkgs/applications/graphics/ImageMagick/imagetragick.patch b/pkgs/applications/graphics/ImageMagick/imagetragick.patch new file mode 100644 index 0000000000000..bdb152dd23a81 --- /dev/null +++ b/pkgs/applications/graphics/ImageMagick/imagetragick.patch @@ -0,0 +1,15 @@ +diff --git a/config/policy.xml b/config/policy.xml +index ca3b022..b058c05 100644 +--- a/config/policy.xml ++++ b/config/policy.xml +@@ -58,4 +58,10 @@ + + + ++ ++ ++ ++ ++ ++ + -- cgit 1.4.1 From 2acea211558fa2d462a9427b24ea15ecedb418c2 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 3 May 2016 23:49:20 +0200 Subject: gitlab: 8.5.7 -> 8.5.12 --- .../applications/version-management/gitlab/Gemfile | 2 +- .../version-management/gitlab/Gemfile.lock | 63 +- .../version-management/gitlab/default.nix | 4 +- .../version-management/gitlab/gemset.nix | 2520 ++++++++++---------- 4 files changed, 1294 insertions(+), 1295 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/Gemfile b/pkgs/applications/version-management/gitlab/Gemfile index fc7ad47919d42..99b8a4e28df15 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile +++ b/pkgs/applications/version-management/gitlab/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -gem 'rails', '4.2.5.1' +gem 'rails', '4.2.5.2' gem 'rails-deprecated_sanitizer', '~> 1.0.3' # Responders respond_to and respond_with diff --git a/pkgs/applications/version-management/gitlab/Gemfile.lock b/pkgs/applications/version-management/gitlab/Gemfile.lock index 2934988f83673..8c3ddf3b57018 100644 --- a/pkgs/applications/version-management/gitlab/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/Gemfile.lock @@ -4,34 +4,34 @@ GEM CFPropertyList (2.3.2) RedCloth (4.2.9) ace-rails-ap (2.0.1) - actionmailer (4.2.5.1) - actionpack (= 4.2.5.1) - actionview (= 4.2.5.1) - activejob (= 4.2.5.1) + actionmailer (4.2.5.2) + actionpack (= 4.2.5.2) + actionview (= 4.2.5.2) + activejob (= 4.2.5.2) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 1.0, >= 1.0.5) - actionpack (4.2.5.1) - actionview (= 4.2.5.1) - activesupport (= 4.2.5.1) + actionpack (4.2.5.2) + actionview (= 4.2.5.2) + activesupport (= 4.2.5.2) rack (~> 1.6) rack-test (~> 0.6.2) rails-dom-testing (~> 1.0, >= 1.0.5) rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (4.2.5.1) - activesupport (= 4.2.5.1) + actionview (4.2.5.2) + activesupport (= 4.2.5.2) builder (~> 3.1) erubis (~> 2.7.0) rails-dom-testing (~> 1.0, >= 1.0.5) rails-html-sanitizer (~> 1.0, >= 1.0.2) - activejob (4.2.5.1) - activesupport (= 4.2.5.1) + activejob (4.2.5.2) + activesupport (= 4.2.5.2) globalid (>= 0.3.0) - activemodel (4.2.5.1) - activesupport (= 4.2.5.1) + activemodel (4.2.5.2) + activesupport (= 4.2.5.2) builder (~> 3.1) - activerecord (4.2.5.1) - activemodel (= 4.2.5.1) - activesupport (= 4.2.5.1) + activerecord (4.2.5.2) + activemodel (= 4.2.5.2) + activesupport (= 4.2.5.2) arel (~> 6.0) activerecord-deprecated_finders (1.0.4) activerecord-nulldb-adapter (0.3.2) @@ -40,7 +40,7 @@ GEM actionpack (>= 4.0.0, < 5) activerecord (>= 4.0.0, < 5) railties (>= 4.0.0, < 5) - activesupport (4.2.5.1) + activesupport (4.2.5.2) i18n (~> 0.7) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) @@ -588,16 +588,16 @@ GEM rack rack-test (0.6.3) rack (>= 1.0) - rails (4.2.5.1) - actionmailer (= 4.2.5.1) - actionpack (= 4.2.5.1) - actionview (= 4.2.5.1) - activejob (= 4.2.5.1) - activemodel (= 4.2.5.1) - activerecord (= 4.2.5.1) - activesupport (= 4.2.5.1) + rails (4.2.5.2) + actionmailer (= 4.2.5.2) + actionpack (= 4.2.5.2) + actionview (= 4.2.5.2) + activejob (= 4.2.5.2) + activemodel (= 4.2.5.2) + activerecord (= 4.2.5.2) + activesupport (= 4.2.5.2) bundler (>= 1.3.0, < 2.0) - railties (= 4.2.5.1) + railties (= 4.2.5.2) sprockets-rails rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) @@ -607,9 +607,9 @@ GEM rails-deprecated_sanitizer (>= 1.0.1) rails-html-sanitizer (1.0.3) loofah (~> 2.0) - railties (4.2.5.1) - actionpack (= 4.2.5.1) - activesupport (= 4.2.5.1) + railties (4.2.5.2) + actionpack (= 4.2.5.2) + activesupport (= 4.2.5.2) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) rainbow (2.0.0) @@ -963,8 +963,8 @@ DEPENDENCIES mysql2 (~> 0.3.16) nested_form (~> 0.3.2) net-ssh (~> 3.0.1) - nokogiri (~> 1.6.7, >= 1.6.7.2) newrelic_rpm (~> 3.14) + nokogiri (~> 1.6.7, >= 1.6.7.2) nprogress-rails (~> 0.1.6.7) oauth2 (~> 1.0.0) octokit (~> 3.8.0) @@ -990,7 +990,7 @@ DEPENDENCIES rack-attack (~> 4.3.1) rack-cors (~> 0.4.0) rack-oauth2 (~> 1.2.1) - rails (= 4.2.5.1) + rails (= 4.2.5.2) rails-deprecated_sanitizer (~> 1.0.3) raphael-rails (~> 2.1.2) rblineprof @@ -1013,7 +1013,6 @@ DEPENDENCIES seed-fu (~> 2.3.5) select2-rails (~> 3.5.9) sentry-raven (~> 0.15) - sentry-raven settingslogic (~> 2.0.9) sham_rack shoulda-matchers (~> 2.8.0) diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 9a3ce8bed224b..c3aef17513f7d 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -24,7 +24,7 @@ in stdenv.mkDerivation rec { name = "gitlab-${version}"; - version = "8.5.7"; + version = "8.5.12"; buildInputs = [ ruby bundler tzdata git nodejs procps ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { owner = "gitlabhq"; repo = "gitlabhq"; rev = "v${version}"; - sha256 = "0n76dafndhp0rwnnvf12zby9xap5fhcplld86pq2wyvqabg4s9yj"; + sha256 = "144i97ywnr0xgm7gnwnwiy7kk5z1d71ccawl8qdhapz0705993l8"; }; patches = [ diff --git a/pkgs/applications/version-management/gitlab/gemset.nix b/pkgs/applications/version-management/gitlab/gemset.nix index b06652781837f..870f5e79f3afa 100644 --- a/pkgs/applications/version-management/gitlab/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gemset.nix @@ -1,1505 +1,1499 @@ { - xpath = { - dependencies = ["nokogiri"]; + ace-rails-ap = { source = { remotes = ["https://rubygems.org"]; - sha256 = "04kcr127l34p7221z13blyl0dvh0bmxwx326j72idayri36a394w"; + sha256 = "082n12rkd9j7d89030nhmi4fx1gqaf13knps6cknsyvwix7fryvv"; type = "gem"; }; - version = "2.0.0"; + version = "2.0.1"; }; - xml-simple = { + actionmailer = { + dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xlqplda3fix5pcykzsyzwgnbamb3qrqkgbrhhfz2a2fxhrkvhw8"; + sha256 = "8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5"; type = "gem"; }; - version = "1.1.5"; + version = "4.2.5.2"; }; - wikicloth = { - dependencies = ["builder" "expression_parser" "rinku"]; + actionpack = { + dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jp6c2yzyqbap8jdiw8yz6l08sradky1llhyhmrg934l1b5akj3s"; + sha256 = "a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf"; type = "gem"; }; - version = "0.8.1"; + version = "4.2.5.2"; }; - websocket-extensions = { + actionview = { + dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "07qnsafl6203a2zclxl20hy4jq11c471cgvd0bj5r9fx1qqw06br"; + sha256 = "e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635"; type = "gem"; }; - version = "0.1.2"; + version = "4.2.5.2"; }; - websocket-driver = { - dependencies = ["websocket-extensions"]; + activejob = { + dependencies = ["activesupport" "globalid"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1v39w1ig6ps8g55xhz6x1w53apl17ii6kpy0jg9249akgpdvb0k9"; + sha256 = "cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026"; type = "gem"; }; - version = "0.6.3"; + version = "4.2.5.2"; }; - webmock = { - dependencies = ["addressable" "crack"]; + activemodel = { + dependencies = ["activesupport" "builder"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; + sha256 = "09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962"; type = "gem"; }; - version = "1.21.0"; + version = "4.2.5.2"; }; - web-console = { - dependencies = ["activemodel" "binding_of_caller" "railties" "sprockets-rails"]; + activerecord = { + dependencies = ["activemodel" "activesupport" "arel"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "13rwps8m76j45iqhggm810j78i8bg4nqzgi8k7amxplik2zm5blf"; + sha256 = "c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2"; type = "gem"; }; - version = "2.2.1"; + version = "4.2.5.2"; }; - warden = { - dependencies = ["rack"]; + activerecord-deprecated_finders = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1iyxw1ms3930dh7vcrfyi4ifpdbkfsr8k7fzjryva0r7k3c71gb7"; + sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m"; type = "gem"; }; - version = "1.2.4"; + version = "1.0.4"; }; - virtus = { - dependencies = ["axiom-types" "coercible" "descendants_tracker" "equalizer"]; + activerecord-nulldb-adapter = { source = { remotes = ["https://rubygems.org"]; - sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; + sha256 = "1ym3paxp5lqr2kr4hkqj6xxqvgl57fv8jqhvgjfxb9lk7k5jlfmp"; type = "gem"; }; - version = "1.0.5"; + version = "0.3.2"; }; - version_sorter = { + activerecord-session_store = { + dependencies = ["actionpack" "activerecord" "railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; + sha256 = "1rp5q0q5i5syfgw7qpiq3a42x13p7myyv1c5hmnczpdlh57axs3p"; type = "gem"; }; - version = "2.0.0"; + version = "0.1.2"; }; - uuid = { - dependencies = ["macaddr"]; + activesupport = { + dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; + sha256 = "80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031"; type = "gem"; }; - version = "2.3.8"; + version = "4.2.5.2"; }; - uniform_notifier = { + acts-as-taggable-on = { + dependencies = ["activerecord"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "009z60qx01am7klmrca8pcladrynljra3a9smifn9f81r4dc7q63"; + sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; type = "gem"; }; - version = "1.9.0"; + version = "3.5.0"; }; - unicorn-worker-killer = { - dependencies = ["get_process_mem" "unicorn"]; + addressable = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0rrdxpwdsapx47axjin8ymxb4f685qlpx8a26bql4ay1559c3gva"; + sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; type = "gem"; }; - version = "0.4.4"; + version = "2.3.8"; }; - unicorn = { - dependencies = ["kgio" "rack" "raindrops"]; + after_commit_queue = { + dependencies = ["activerecord"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; + sha256 = "1jrhvj4335dsrj0xndbf7a7m2inbwbx1knc0bwgvmkk1w47l43s0"; type = "gem"; }; - version = "4.8.3"; + version = "1.3.0"; }; - unf_ext = { + akismet = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; + sha256 = "0hqpn25iyypkwkrqaibjm5nss5jmlkrddhia7frmz94prvyjr02w"; type = "gem"; }; - version = "0.0.7.1"; + version = "2.0.0"; }; - unf = { - dependencies = ["unf_ext"]; + allocations = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; + sha256 = "0iynf7gkbnbr5mgl2wgbgvxmjdiawh7ywwbnyjm94bj3pkybzgkc"; type = "gem"; }; - version = "0.1.4"; + version = "1.0.4"; }; - underscore-rails = { + annotate = { + dependencies = ["activerecord" "rake"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0iyspb7s49wpi9cc314gvlkyn45iyfivzxhdw0kql1zrgllhlzfk"; + sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; type = "gem"; }; - version = "1.8.3"; + version = "2.6.10"; }; - uglifier = { - dependencies = ["execjs" "json"]; + arel = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0mzs64z3m1b98rh6ssxpqfz9sc87f6ml6906b0m57vydzfgrh1cz"; + sha256 = "1a270mlajhrmpqbhxcqjqypnvgrq4pgixpv3w9gwp1wrrapnwrzk"; type = "gem"; }; - version = "2.7.2"; + version = "6.0.3"; }; - tzinfo = { - dependencies = ["thread_safe"]; + asana = { + dependencies = ["faraday" "faraday_middleware" "faraday_middleware-multi_json" "oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; + sha256 = "1560p13g57pl4xqkmhwn1vpqhm7mw9fwmmswk38k3i2r7g0b5y9z"; type = "gem"; }; - version = "1.2.2"; + version = "0.4.0"; }; - twitter-stream = { - dependencies = ["eventmachine" "http_parser.rb" "simple_oauth"]; + asciidoctor = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0is81g3xvnjk64sqiaqlh2ziwfryzwvk1yvaniryg0zhppgsyriq"; + sha256 = "0q9yhan2mkk1lh15zcfd9g2fn6faix9yrf5skg23dp1y77jv7vm0"; type = "gem"; }; - version = "0.1.16"; + version = "1.5.3"; }; - turbolinks = { - dependencies = ["coffee-rails"]; + ast = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; + sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk"; type = "gem"; }; - version = "2.5.3"; + version = "2.1.0"; }; - tins = { + astrolabe = { + dependencies = ["parser"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; + sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7"; type = "gem"; }; - version = "1.6.0"; + version = "1.3.1"; }; - tinder = { - dependencies = ["eventmachine" "faraday" "faraday_middleware" "hashie" "json" "mime-types" "multi_json" "twitter-stream"]; + attr_encrypted = { + dependencies = ["encryptor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kwj0wd540wb2ws86d3jdva175dx00w2j8lyrvbb6qli3g27byd7"; + sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p"; type = "gem"; }; - version = "1.10.1"; + version = "1.3.4"; }; - timfel-krb5-auth = { + attr_required = { source = { remotes = ["https://rubygems.org"]; - sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; + sha256 = "0pawa2i7gw9ppj6fq6y288da1ncjpzsmc6kx7z63mjjvypa5q3dc"; type = "gem"; }; - version = "0.8.3"; + version = "1.0.0"; }; - tilt = { + autoprefixer-rails = { + dependencies = ["execjs" "json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir"; + sha256 = "0m1w42ncz0p48r5hbyglayxkzrnplw18r99dc1ia2cb3nizkwllx"; type = "gem"; }; - version = "1.4.1"; + version = "6.2.3"; }; - thread_safe = { + awesome_print = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; + sha256 = "1k85hckprq0s9pakgadf42k1d5s07q23m3y6cs977i6xmwdivyzr"; type = "gem"; }; - version = "0.3.5"; + version = "1.2.0"; }; - thor = { + axiom-types = { + dependencies = ["descendants_tracker" "ice_nine" "thread_safe"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; type = "gem"; }; - version = "0.19.1"; + version = "0.1.1"; }; - thin = { - dependencies = ["daemons" "eventmachine" "rack"]; + babosa = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1pyc602sa8fqwjyssn9yvf3fqrr14jk7hj9hsjlan1mq4zvim1lf"; + sha256 = "05rgxg4pz4bc4xk34w5grv0yp1j94wf571w84lf3xgqcbs42ip2f"; type = "gem"; }; - version = "1.6.4"; + version = "1.0.2"; }; - test_after_commit = { - dependencies = ["activerecord"]; + bcrypt = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1fzg8qan6f0n0ynr594bld2k0rwwxj99yzhiga2f3pkj9ina1abb"; + sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; type = "gem"; }; - version = "0.4.2"; + version = "3.1.10"; }; - terminal-table = { + benchmark-ips = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; + sha256 = "0bh681m54qdsdyvpvflj1wpnj3ybspbpjkr4cnlrl4nk4yikli0j"; type = "gem"; }; - version = "1.5.2"; + version = "2.3.0"; }; - term-ansicolor = { - dependencies = ["tins"]; + better_errors = { + dependencies = ["coderay" "erubis"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; + sha256 = "0v0q8bdkqqlcsfqbk4wvc3qnz8an44mgz720v5f11a4nr413mjgf"; type = "gem"; }; - version = "1.3.2"; + version = "1.0.1"; }; - temple = { + binding_of_caller = { + dependencies = ["debug_inspector"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ysraljv7lkb04z5vdyrkijab7j1jzj1mgz4bj82744dp7d0rhb0"; + sha256 = "15jg6dkaq2nzcd602d7ppqbdxw3aji961942w93crs6qw4n6h9yk"; type = "gem"; }; - version = "0.7.6"; + version = "0.7.2"; }; - teaspoon-jasmine = { - dependencies = ["teaspoon"]; + bootstrap-sass = { + dependencies = ["autoprefixer-rails" "sass"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "00wygrv1jm4aj15p1ab9d5fdrj6y83kv26xgp52mx4lp78h2ms9q"; + sha256 = "12hhw42hk9clwfj6yz5v0c5p35wrn5yjnji7bnzsfs99vi2q00ld"; type = "gem"; }; - version = "2.2.0"; + version = "3.3.6"; }; - teaspoon = { - dependencies = ["railties"]; + brakeman = { + dependencies = ["erubis" "fastercsv" "haml" "highline" "multi_json" "ruby2ruby" "ruby_parser" "safe_yaml" "sass" "slim" "terminal-table"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; + sha256 = "15v13yizpvp1rm86raqggmsmm51v6p8fqw3pfgi6xpvx1ba06cfm"; type = "gem"; }; - version = "1.0.2"; + version = "3.1.4"; }; - task_list = { - dependencies = ["html-pipeline"]; + browser = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1iv1fizb04463c4mp4gxd8v0414fhvmiwvwvjby5b9qq79d8zwab"; + sha256 = "01bkb64w2ld2q5r3chc4f6spbjrmginyg8wlzg130zmx2z4jia2h"; type = "gem"; }; - version = "1.0.2"; + version = "1.0.1"; }; - systemu = { + builder = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; + sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; type = "gem"; }; - version = "2.6.5"; + version = "3.2.2"; }; - stringex = { + bullet = { + dependencies = ["activesupport" "uniform_notifier"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "150adm7rfh6r9b5ra6vk75mswf9m3wwyslcf8f235a08m29fxa17"; + sha256 = "1h3iaflcz5a1xr32bdb8sk4nx06yhh5d8y7w294w49xigfv4hzj3"; type = "gem"; }; - version = "2.5.2"; + version = "4.14.10"; }; - state_machines-activerecord = { - dependencies = ["activerecord" "state_machines-activemodel"]; + bundler-audit = { + dependencies = ["thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "10dplkn4cm49xby8s0sn7wxww4hnxi4dgikfsmhp1rbsa24d76vx"; + sha256 = "0msv3k2277y7al5lbnw7q9lmb5fnrscpkmsb36wpn189pdq0akfv"; type = "gem"; }; - version = "0.3.0"; + version = "0.4.0"; }; - state_machines-activemodel = { - dependencies = ["activemodel" "state_machines"]; + byebug = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1bshcm53v2vfpapvhws1h0dq1h4f3p6bvpdkjpydb52a3m0w2z0y"; + sha256 = "1yx89b7vh5mbvxyi8n7zl25ia1bqdj71995m4daj6d41rnkmrpnc"; type = "gem"; }; - version = "0.3.0"; + version = "8.2.1"; }; - state_machines = { + cal-heatmap-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1xg84kdglz0k1pshf2q604zybjpribzcz2b651sc1j27kd86w787"; + sha256 = "0lrmcyj3iixkprqi9fb9vcn97wpp779sl5hxxgx57r3rb7l4d20w"; type = "gem"; }; - version = "0.4.0"; + version = "3.5.1"; }; - sprockets-rails = { - dependencies = ["actionpack" "activesupport" "sprockets"]; + capybara = { + dependencies = ["mime-types" "nokogiri" "rack" "rack-test" "xpath"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vsl6ryxdjpp97nl4ghhk1v6p50zh3sx9qv81bhmlffc234r91wn"; + sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; type = "gem"; }; - version = "2.3.3"; + version = "2.4.4"; }; - sprockets = { - dependencies = ["hike" "multi_json" "rack" "tilt"]; + capybara-screenshot = { + dependencies = ["capybara" "launchy"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; + sha256 = "17v1wihr3aqrxhrwswkdpdklj1xsfcaksblh1y8hixvm9bqfyz3y"; type = "gem"; }; - version = "2.12.4"; + version = "1.0.11"; }; - spring-commands-teaspoon = { - dependencies = ["spring"]; + carrierwave = { + dependencies = ["activemodel" "activesupport" "json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1g7n4m2s9d0frh7y1xibzpphqajfnx4fvgfc66nh545dd91w2nqz"; + sha256 = "1b1av1ancby6brhmypl5k8xwrasd8bd3kqp9ri8kbq7z8nj6k445"; type = "gem"; }; - version = "0.0.2"; + version = "0.9.0"; }; - spring-commands-spinach = { - dependencies = ["spring"]; + cause = { source = { remotes = ["https://rubygems.org"]; - sha256 = "138jardqyj96wz68njdgy55qjbpl2d0g8bxbkz97ndaz3c2bykv9"; + sha256 = "0digirxqlwdg79mkbn70yc7i9i1qnclm2wjbrc47kqv6236bpj00"; type = "gem"; }; - version = "1.0.0"; + version = "0.1"; }; - spring-commands-rspec = { - dependencies = ["spring"]; + CFPropertyList = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; + sha256 = "0mjb46368z4hiax3fcsgxk14fxrhwnvcmakc2f5sx8nz0wvvkwg2"; type = "gem"; }; - version = "1.0.4"; + version = "2.3.2"; }; - spring = { + charlock_holmes = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; + sha256 = "0jsl6k27wjmssxbwv9wpf7hgp9r0nvizcf6qpjnr7qs2nia53lf7"; type = "gem"; }; - version = "1.3.6"; + version = "0.7.3"; }; - spinach-rails = { - dependencies = ["capybara" "railties" "spinach"]; + chunky_png = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1nfacfylkncfgi59g2wga6m4nzdcjqb8s50cax4nbx362ap4bl70"; + sha256 = "0vf0axgrm95bs3y0x5gdb76xawfh210yxplj7jbwr6z7n88i1axn"; type = "gem"; }; - version = "0.2.1"; + version = "1.3.5"; }; - spinach = { - dependencies = ["colorize" "gherkin-ruby" "json"]; + cliver = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; + sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; type = "gem"; }; - version = "0.8.10"; + version = "0.3.2"; }; - slop = { + coderay = { source = { remotes = ["https://rubygems.org"]; - sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; + sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; type = "gem"; }; - version = "3.6.0"; + version = "1.1.0"; }; - slim = { - dependencies = ["temple" "tilt"]; + coercible = { + dependencies = ["descendants_tracker"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1szs71hh0msm5gj6qbcxw44m3hqnwybx4yh02scwixnwg576058k"; + sha256 = "1p5azydlsz0nkxmcq0i1gzmcfq02lgxc4as7wmf47j1c6ljav0ah"; type = "gem"; }; - version = "3.0.6"; + version = "1.0.0"; }; - slack-notifier = { + coffee-rails = { + dependencies = ["coffee-script" "railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "08z6fv186yw1nrpl6zwp3lwqksin145aa1jv6jf00bnv3sicliiz"; + sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; type = "gem"; }; - version = "1.2.1"; + version = "4.1.0"; }; - six = { + coffee-script = { + dependencies = ["coffee-script-source" "execjs"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bhapiyjh5r5qjpclfw8i65plvy6k2q4azr5xir63xqglr53viw3"; + sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; type = "gem"; }; - version = "0.2.0"; + version = "2.4.1"; }; - sinatra = { - dependencies = ["rack" "rack-protection" "tilt"]; + coffee-script-source = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; + sha256 = "1k4fg39rrkl3bpgchfj94fbl9s4ysaz16w8dkqncf2vyf79l3qz0"; type = "gem"; }; - version = "1.4.6"; + version = "1.10.0"; }; - simplecov-html = { + colorize = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; + sha256 = "16bsjcqb6pg3k94dh1l5g3hhx5g2g4g8rlr76dnc78yyzjjrbayn"; type = "gem"; }; - version = "0.10.0"; + version = "0.7.7"; }; - simplecov = { - dependencies = ["docile" "json" "simplecov-html"]; + concurrent-ruby = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; + sha256 = "0qqdgcfkzv90nznrpsvg3cgg5xiqz4c8hnv7va5gm4fp4lf4k85v"; type = "gem"; }; - version = "0.10.0"; + version = "1.0.0"; }; - simple_oauth = { + connection_pool = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0bb06p88xsdw4fxll1ikv5i5k58sl6y323ss0wp1hqjm3xw1jgvj"; + sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; type = "gem"; }; - version = "0.1.9"; + version = "2.2.0"; }; - sidekiq-cron = { - dependencies = ["redis-namespace" "rufus-scheduler" "sidekiq"]; + coveralls = { + dependencies = ["json" "rest-client" "simplecov" "term-ansicolor" "thor" "tins"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xnbvh8kjv6954vsiwfcpp7bn8sgpwvnyapnq7b94w8h7kj3ykqy"; + sha256 = "03vnvcw1fdmkp3405blcxpsjf89jxd2061474a32fchsmv2das9y"; type = "gem"; }; - version = "0.4.0"; + version = "0.8.9"; }; - sidekiq = { - dependencies = ["concurrent-ruby" "connection_pool" "json" "redis"]; + crack = { + dependencies = ["safe_yaml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1x7jfc2va0x6fcfffdf0wdiyk4krjw8053jzwffa63wkqr5jvg3y"; + sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; type = "gem"; }; - version = "4.0.1"; + version = "0.4.3"; }; - shoulda-matchers = { - dependencies = ["activesupport"]; + creole = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; + sha256 = "00rcscz16idp6dx0dk5yi5i0fz593i3r6anbn5bg2q07v3i025wm"; type = "gem"; }; - version = "2.8.0"; + version = "0.5.0"; }; - sham_rack = { - dependencies = ["rack"]; + d3_rails = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; + sha256 = "12vxiiflnnkcxak2wmbajyf5wzmcv9wkl4drsp0am72azl8a6g9x"; type = "gem"; }; - version = "1.3.6"; + version = "3.5.11"; }; - sexp_processor = { + daemons = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; + sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; type = "gem"; }; - version = "4.6.0"; + version = "1.2.3"; }; - settingslogic = { + database_cleaner = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; + sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; type = "gem"; }; - version = "2.0.9"; + version = "1.4.1"; }; - sentry-raven = { - version = "0.15.6"; + debug_inspector = { source = { - type = "gem"; remotes = ["https://rubygems.org"]; - sha256 = "0iqnwfmf6rnpgrvl3c8gh2gkix91nhm21j5qf389g4mi2rkc0ky8"; + sha256 = "109761g00dbrw5q0dfnbqg8blfm699z4jj70l4zrgf9mzn7ii50m"; + type = "gem"; }; + version = "0.0.2"; }; - select2-rails = { - dependencies = ["thor"]; + debugger-ruby_core_source = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; + sha256 = "1lp5dmm8a8dpwymv6r1y6yr24wxsj0gvgb2b8i7qq9rcv414snwd"; type = "gem"; }; - version = "3.5.9.3"; + version = "1.3.8"; }; - seed-fu = { - dependencies = ["activerecord" "activesupport"]; + default_value_for = { + dependencies = ["activerecord"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; + sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; type = "gem"; }; - version = "2.3.5"; + version = "3.0.1"; }; - sdoc = { - dependencies = ["json" "rdoc"]; + descendants_tracker = { + dependencies = ["thread_safe"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "17l8qk0ld47z4h5avcnylvds8nc6dp25zc64w23z8li2hs341xf2"; + sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; type = "gem"; }; - version = "0.3.20"; + version = "0.0.4"; }; - sawyer = { - dependencies = ["addressable" "faraday"]; + devise = { + dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "thread_safe" "warden"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy"; + sha256 = "00h0xdl4a8pjpb0gbgy4w6q9j2mpczkmj23195zmjrg2b1gl8f2q"; type = "gem"; }; - version = "0.6.0"; + version = "3.5.4"; }; - sass-rails = { - dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; + devise-async = { + dependencies = ["devise"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1f6357vw944w2ayayqmz8ai9myl6xbnry06sx5b5ms4r9lny8hj8"; + sha256 = "11llg7ggzpmg4lb9gh4sx55spvp98sal5r803gjzamps9crfq6mm"; type = "gem"; }; - version = "5.0.4"; + version = "0.9.0"; }; - sass = { + devise-two-factor = { + dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "04rpdcp258arh2wgdk9shbqnzd6cbbbpi3wpi9a0wby8awgpxmyf"; + sha256 = "1v2wva971ds48af47rj4ywavlmz7qzbmf1jpf1l3xn3mscz52hln"; type = "gem"; }; - version = "3.4.20"; + version = "2.0.1"; }; - sanitize = { - dependencies = ["nokogiri"]; + diff-lcs = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0xsv6xqrlz91rd8wifjknadbl3z5h6qphmxy0hjb189qbdghggn3"; + sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; type = "gem"; }; - version = "2.1.0"; + version = "1.2.5"; }; - safe_yaml = { + diffy = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; + sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; type = "gem"; }; - version = "1.0.4"; + version = "3.0.7"; }; - rugged = { + docile = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0v0cvdw8cgy1hf5h3cx796zpxhbad8d5cm50nykyhwjc00q80zrr"; + sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; type = "gem"; }; - version = "0.24.0b13"; + version = "1.1.5"; }; - rufus-scheduler = { + domain_name = { + dependencies = ["unf"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "04bmvvvri7ni7dvlq3gi1y553f6rp6bw2kmdfp9ny5bh3l7qayrh"; + sha256 = "16qvfrmcwlzz073aas55mpw2nhyhjcn96s524w0g1wlml242hjav"; type = "gem"; }; - version = "3.1.10"; + version = "0.5.25"; }; - rubypants = { + doorkeeper = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vpdkrc4c8qhrxph41wqwswl28q5h5h994gy4c1mlrckqzm3hzph"; + sha256 = "0wim84wkvx758cfb8q92w3hhvnfbwr990x1mmfv1ss1ivjz8fmm0"; type = "gem"; }; - version = "0.2.0"; + version = "2.2.2"; }; - rubyntlm = { + dropzonejs-rails = { + dependencies = ["rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; + sha256 = "1vqqxzv6qdqy47m2q28adnmccfvc17p2bmkkaqjvrczrhvkkha64"; type = "gem"; }; - version = "0.5.2"; + version = "0.7.2"; }; - ruby_parser = { - dependencies = ["sexp_processor"]; + email_reply_parser = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1rip6075b4k5a7s8w2klwc3jaqx31h69k004ac5nhl8y0ja92qvz"; + sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; type = "gem"; }; - version = "3.7.2"; + version = "0.5.8"; }; - ruby2ruby = { - dependencies = ["ruby_parser" "sexp_processor"]; + email_spec = { + dependencies = ["launchy" "mail"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kmc0503s9mqnjyypx51wsi6zz9zj550ch43rag23wpj4qd6i6pm"; + sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; type = "gem"; }; - version = "2.2.0"; + version = "1.6.0"; }; - ruby-saml = { + encryptor = { source = { remotes = ["https://rubygems.org"]; - sha256 = "151jbak16y87dbj3ma2nc03rh37z7lixcwgaqahncq80rgnv45a8"; + sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; type = "gem"; }; - version = "1.1.1"; + version = "1.3.0"; }; - ruby-progressbar = { + equalizer = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; + sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; type = "gem"; }; - version = "1.7.5"; + version = "0.0.11"; }; - ruby-fogbugz = { - dependencies = ["crack"]; + erubis = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1jj0gpkycbrivkh2q3429vj6mbgx6axxisg69slj3c4mgvzfgchm"; + sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; type = "gem"; }; - version = "0.2.1"; + version = "2.7.0"; }; - rubocop = { - dependencies = ["astrolabe" "parser" "powerpack" "rainbow" "ruby-progressbar" "tins"]; + escape_utils = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1grqda2fdknm43zyagh8gcmnhjkypyfw98q92hmvprprwghkq2sg"; + sha256 = "0hb8nmrgmd9n5dhih86fp91sf26mmw14sdn5vswg5g20svrqxc7x"; type = "gem"; }; - version = "0.35.1"; + version = "1.1.0"; }; - rspec-support = { + eventmachine = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27"; + sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; type = "gem"; }; - version = "3.3.0"; + version = "1.0.8"; }; - rspec-rails = { - dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; + excon = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; + sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; type = "gem"; }; - version = "3.3.3"; + version = "0.45.4"; }; - rspec-mocks = { - dependencies = ["diff-lcs" "rspec-support"]; + execjs = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; + sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; type = "gem"; }; - version = "3.3.2"; + version = "2.6.0"; }; - rspec-expectations = { - dependencies = ["diff-lcs" "rspec-support"]; + expression_parser = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; + sha256 = "1938z3wmmdabqxlh5d5c56xfg1jc6z15p7zjyhvk7364zwydnmib"; type = "gem"; }; - version = "3.3.1"; + version = "0.9.0"; }; - rspec-core = { - dependencies = ["rspec-support"]; + factory_girl = { + dependencies = ["activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; + sha256 = "13z20a4b7z1c8vbz0qz5ranssdprldwvwlgjmn38x311sfjmp9dz"; type = "gem"; }; - version = "3.3.2"; + version = "4.3.0"; }; - rspec = { - dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; + factory_girl_rails = { + dependencies = ["factory_girl" "railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; + sha256 = "1jj0yl6mfildb4g79dwgc1q5pv2pa65k9b1ml43mi8mg62j8mrhz"; type = "gem"; }; - version = "3.3.0"; + version = "4.3.0"; }; - rqrcode-rails3 = { - dependencies = ["rqrcode"]; + faraday = { + dependencies = ["multipart-post"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; type = "gem"; }; - version = "0.1.7"; + version = "0.9.2"; }; - rqrcode = { - dependencies = ["chunky_png"]; + faraday_middleware = { + dependencies = ["faraday"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "188n1mvc7klrlw30bai16sdg4yannmy7cz0sg0nvm6f1kjx5qflb"; + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; type = "gem"; }; - version = "0.7.0"; + version = "0.10.0"; }; - rouge = { + faraday_middleware-multi_json = { + dependencies = ["faraday_middleware" "multi_json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz"; + sha256 = "0651sxhzbq9xfq3hbpmrp0nbybxnm9ja3m97k386m4bqgamlvz1q"; type = "gem"; }; - version = "1.10.1"; + version = "0.0.6"; }; - rotp = { + fastercsv = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; + sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; type = "gem"; }; - version = "2.1.1"; + version = "1.5.5"; }; - rinku = { + ffaker = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; + sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; type = "gem"; }; - version = "1.7.3"; + version = "2.0.0"; }; - rest-client = { - dependencies = ["http-cookie" "mime-types" "netrc"]; + ffi = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; type = "gem"; }; - version = "1.8.0"; + version = "1.9.10"; }; - responders = { - dependencies = ["railties"]; + fission = { + dependencies = ["CFPropertyList"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i00bxp8fa67rzl50wfiaw16w21j5d5gwjjkdiwr0sw9q6ixmpz1"; + sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh"; type = "gem"; }; - version = "2.1.1"; + version = "0.5.0"; }; - rerun = { - dependencies = ["listen"]; + flay = { + dependencies = ["ruby_parser" "sexp_processor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0av239bpmy55fdx4qaw9n71aapjy2myr51h5plzjxsyr0fdwn1xq"; + sha256 = "0zcp9nmnfqixdcqa2dzwwjy5np4n2n16bj25gw7bbzbjp9hqzhn6"; type = "gem"; }; - version = "0.11.0"; + version = "2.6.1"; }; - request_store = { + flog = { + dependencies = ["ruby_parser" "sexp_processor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "01rxi2hw84y133z0r91jns4aaywd8d83wjq0xgb42iaicf0a90p9"; + sha256 = "1asrcdj6gh5mxcimqak94jjyyi5cxnqn904lc8pmrljg1nv1bxpm"; type = "gem"; }; - version = "1.2.1"; + version = "4.3.2"; }; - redis-store = { - dependencies = ["redis"]; + flowdock = { + dependencies = ["httparty" "multi_json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0gf462p0wx4hn7m1m8ghs701n6xx0ijzm5cff9xfagd2s6va145m"; + sha256 = "04nrvg4gzgabf5mnnhccl8bwrkvn3y4pm7a1dqzqhpvfr4m5pafg"; type = "gem"; }; - version = "1.1.7"; + version = "0.7.1"; }; - redis-rails = { - dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"]; + fog = { + dependencies = ["fog-aliyun" "fog-atmos" "fog-aws" "fog-brightbox" "fog-core" "fog-dynect" "fog-ecloud" "fog-google" "fog-json" "fog-local" "fog-powerdns" "fog-profitbricks" "fog-radosgw" "fog-riakcs" "fog-sakuracloud" "fog-serverlove" "fog-softlayer" "fog-storm_on_demand" "fog-terremark" "fog-vmfusion" "fog-voxel" "fog-xenserver" "fog-xml" "ipaddress" "nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0igww7hb58aq74mh50dli3zjg78b54y8nhd0h1h9vz4vgjd4q8m7"; + sha256 = "1ml31jdycqdm8w7w3l9pbyrgbnmrrnhmkppa2x4bwi9as1n1jmwq"; type = "gem"; }; - version = "4.0.0"; + version = "1.36.0"; }; - redis-rack = { - dependencies = ["rack" "redis-store"]; + fog-aliyun = { + dependencies = ["fog-core" "fog-json" "ipaddress" "xml-simple"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1y1mxx8gn0krdrpwllv7fqsbvki1qjnb2dz8b4q9gwc326829gk8"; + sha256 = "1i76g8sdskyfc0gcnd6n9i757s7dmwg3wf6spcr2xh8wzyxkm1pj"; type = "gem"; }; - version = "1.5.0"; + version = "0.1.0"; }; - redis-namespace = { - dependencies = ["redis"]; + fog-atmos = { + dependencies = ["fog-core" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; + sha256 = "1aaxgnw9zy96gsh4h73kszypc32sx497s6bslvhfqh32q9d1y8c9"; type = "gem"; }; - version = "1.5.2"; + version = "0.1.0"; }; - redis-activesupport = { - dependencies = ["activesupport" "redis-store"]; + fog-aws = { + dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "10y3kybz21n2z11478sf0cp4xzclvxf0b428787brmgpc6i7p7zg"; + sha256 = "1pzfahq8h3alfflb5dr8lm02q27x81vm96qn5zyfdlx86yy7bq96"; type = "gem"; }; - version = "4.1.5"; + version = "0.8.1"; }; - redis-actionpack = { - dependencies = ["actionpack" "redis-rack" "redis-store"]; + fog-brightbox = { + dependencies = ["fog-core" "fog-json" "inflecto"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jjl6dhhpdapdaywq5iqz7z36mwbw0cn0m30wcc5wcbv7xmiiygw"; + sha256 = "0p7rbx587hb1d1am90dcr3zdp6y50c2zddh97yfgl62vji0pbkkd"; type = "gem"; }; - version = "4.0.1"; + version = "0.10.1"; }; - redis = { + fog-core = { + dependencies = ["builder" "excon" "formatador"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0255w9izzs04hw9wivn05yqiwi34w28ylxs0xvpmwc1vrh18fwcl"; + sha256 = "02z91r3f5a64hlalm6h39v0778yl2kk3qvva0zvplpp9hpwbwzhl"; type = "gem"; }; - version = "3.2.2"; + version = "1.35.0"; }; - redcarpet = { + fog-dynect = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "14i3wypp97bpk20679d1csy88q4hsgfqbnqw6mryl77m2g0d09pk"; + sha256 = "18lqmdkm22254z86jh3aa9v9vqk8bgbd3d1m0w7az3ij47ak7kch"; type = "gem"; }; - version = "3.3.3"; + version = "0.0.2"; }; - recaptcha = { - dependencies = ["json"]; + fog-ecloud = { + dependencies = ["fog-core" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "190qqklirmi31s6ih7png4h9xmx1p5h2n5fi45z90y8hsp5w1sh1"; + sha256 = "18rb4qjad9xwwqvvpj8r2h0hi9svy71pm4d3fc28cdcnfarmdi06"; type = "gem"; }; - version = "1.0.2"; + version = "0.3.0"; }; - rdoc = { - dependencies = ["json"]; + fog-google = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1v9k4sp5yzj2bshngckdvivj6bszciskk1nd2r3wri2ygs7vgqm8"; + sha256 = "0z4vmswpqwph04c0wqzrscns1d1wdm8kbxx457bv156mawzrhfj3"; type = "gem"; }; - version = "3.12.2"; + version = "0.1.0"; }; - rblineprof = { - dependencies = ["debugger-ruby_core_source"]; + fog-json = { + dependencies = ["fog-core" "multi_json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m58kdjgncwf0h1qry3qk5h4bg8sj0idykqqijqcrr09mxfd9yc6"; + sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; type = "gem"; }; - version = "0.3.6"; + version = "1.0.2"; }; - rb-inotify = { - dependencies = ["ffi"]; + fog-local = { + dependencies = ["fog-core"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; + sha256 = "0i5hxwzmc2ag3z9nlligsaf679kp2pz39cd8n2s9cmxaamnlh2s3"; type = "gem"; }; - version = "0.9.5"; + version = "0.2.1"; }; - rb-fsevent = { + fog-powerdns = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hq57by28iv0ijz8pk9ynih0xdg7vnl1010xjcijfklrcv89a1j2"; + sha256 = "08zavzwfkk344gz83phz4sy9nsjznsdjsmn1ifp6ja17bvydlhh7"; type = "gem"; }; - version = "0.9.6"; + version = "0.1.1"; }; - raphael-rails = { + fog-profitbricks = { + dependencies = ["fog-core" "fog-xml" "nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0sjiaymvfn4al5dr1pza5i142byan0fxnj4rymziyql2bzvdm2bc"; + sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn"; type = "gem"; }; - version = "2.1.2"; + version = "0.0.5"; }; - rake = { + fog-radosgw = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; + sha256 = "0nslgv8yp5qkiryj3zsm91gs7s6i626igj61kwxjjwk2yv6swyr6"; type = "gem"; }; - version = "10.5.0"; + version = "0.0.5"; }; - raindrops = { + fog-riakcs = { + dependencies = ["fog-core" "fog-json" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; + sha256 = "1nbxc4dky3agfwrmgm1aqmi59p6vnvfnfbhhg7xpg4c2cf41whxm"; type = "gem"; }; - version = "0.15.0"; + version = "0.1.0"; }; - rainbow = { + fog-sakuracloud = { + dependencies = ["fog-core" "fog-json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; + sha256 = "08krsn9sk5sx0aza812g31r169bd0zanb8pq5am3a64j6azarimd"; type = "gem"; }; - version = "2.0.0"; + version = "1.7.5"; }; - railties = { - dependencies = ["actionpack" "activesupport" "rake" "thor"]; + fog-serverlove = { + dependencies = ["fog-core" "fog-json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146"; + sha256 = "0hxgmwzygrw25rbsy05i6nzsyr0xl7xj5j2sjpkb9n9wli5sagci"; type = "gem"; }; - version = "4.2.5.2"; + version = "0.1.2"; }; - rails-html-sanitizer = { - dependencies = ["loofah"]; + fog-softlayer = { + dependencies = ["fog-core" "fog-json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "138fd86kv073zqfx0xifm646w6bgw2lr8snk16lknrrfrss8xnm7"; + sha256 = "1zax2wws0q8pm787jnlxd2xlj23f2acz0s6jl5nzczyxjgll571r"; type = "gem"; }; version = "1.0.3"; }; - rails-dom-testing = { - dependencies = ["activesupport" "nokogiri" "rails-deprecated_sanitizer"]; + fog-storm_on_demand = { + dependencies = ["fog-core" "fog-json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1v8jl6803mbqpxh4hn0szj081q1a3ap0nb8ni0qswi7z4la844v8"; + sha256 = "0fif1x8ci095b2yyilf65n7x6iyvn448azrsnmwsdkriy8vxxv3y"; type = "gem"; }; - version = "1.0.7"; + version = "0.1.1"; }; - rails-deprecated_sanitizer = { - dependencies = ["activesupport"]; + fog-terremark = { + dependencies = ["fog-core" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; + sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf"; type = "gem"; }; - version = "1.0.3"; + version = "0.1.0"; }; - rails = { - dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; + fog-vmfusion = { + dependencies = ["fission" "fog-core"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e"; + sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4"; type = "gem"; }; - version = "4.2.5.2"; + version = "0.1.0"; }; - rack-test = { - dependencies = ["rack"]; + fog-voxel = { + dependencies = ["fog-core" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; + sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx"; type = "gem"; }; - version = "0.6.3"; + version = "0.1.0"; }; - rack-protection = { - dependencies = ["rack"]; + fog-xenserver = { + dependencies = ["fog-core" "fog-xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; + sha256 = "1ngw8hh8ljk7wi0cp8n4b4jcy2acx0yqzjk7851m3mp0kji5dlgl"; type = "gem"; }; - version = "1.5.3"; + version = "0.2.2"; }; - rack-oauth2 = { - dependencies = ["activesupport" "attr_required" "httpclient" "multi_json" "rack"]; + fog-xml = { + dependencies = ["fog-core" "nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1szfnb74p5s7k0glpmiv16rfl4wx9mnrr7riapgpbcx163zzkxad"; + sha256 = "1576sbzza47z48p0k9h1wg3rhgcvcvdd1dfz3xx1cgahwr564fqa"; type = "gem"; }; - version = "1.2.1"; + version = "0.1.2"; }; - rack-mount = { - dependencies = ["rack"]; + font-awesome-rails = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "09a1qfaxxsll1kbgz7z0q0nr48sfmfm7akzaviis5bjpa5r00ld2"; + sha256 = "09x1bg98sp2v1lsg9h2bal915q811xq84h9d74p1f3378ga63c1x"; type = "gem"; }; - version = "0.8.3"; + version = "4.5.0.0"; }; - rack-cors = { + foreman = { + dependencies = ["thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1sz9d9gjmv2vjl3hddzk269hb1k215k8sp37gicphx82h3chk1kw"; + sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; type = "gem"; }; - version = "0.4.0"; + version = "0.78.0"; }; - rack-attack = { - dependencies = ["rack"]; + formatador = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0ihic8ar2ddfv15p5gia8nqzsl3y7iayg5v4rmg72jlvikgsabls"; + sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; type = "gem"; }; - version = "4.3.1"; + version = "0.2.5"; }; - rack-accept = { - dependencies = ["rack"]; + fuubar = { + dependencies = ["rspec" "ruby-progressbar"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "18jdipx17b4ki33cfqvliapd31sbfvs4mv727awynr6v95a7n936"; + sha256 = "0xwqs24y8s73aayh39si17kccsmr0bjgmi6jrjyfp7gkjb6iyhpv"; type = "gem"; }; - version = "0.4.5"; + version = "2.0.0"; }; - rack = { + gemnasium-gitlab-service = { + dependencies = ["rugged"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; + sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; type = "gem"; }; - version = "1.6.4"; + version = "0.2.6"; }; - quiet_assets = { - dependencies = ["railties"]; + gemojione = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; + sha256 = "0av60lajn64z1csmkzfaf5wvpd3x48lcshiknkqr8m0zx3sg7w3h"; type = "gem"; }; - version = "1.0.3"; + version = "2.2.1"; }; - pyu-ruby-sasl = { + get_process_mem = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1rcpjiz9lrvyb3rd8k8qni0v4ps08psympffyldmmnrqayyad0sn"; + sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; type = "gem"; }; - version = "0.0.3.3"; + version = "0.2.0"; }; - pry-rails = { - dependencies = ["pry"]; + gherkin-ruby = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; + sha256 = "18ay7yiibf4sl9n94k7mbi4k5zj2igl4j71qcmkswv69znyx0sn1"; type = "gem"; }; - version = "0.3.4"; + version = "0.3.2"; }; - pry = { - dependencies = ["coderay" "method_source" "slop"]; + github-linguist = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1x78rvp69ws37kwig18a8hr79qn36vh8g1fn75p485y3b3yiqszg"; + sha256 = "1xxm2lbabkc1xmx2myv56a4fkw3wwg9n8w2bzwrl4s33kf6x62ag"; type = "gem"; }; - version = "0.10.3"; + version = "4.7.5"; }; - powerpack = { + github-markup = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; + sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; type = "gem"; }; - version = "0.1.1"; + version = "1.3.3"; }; - posix-spawn = { + gitlab-flowdock-git-hook = { + dependencies = ["flowdock" "gitlab-grit" "multi_json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; + sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; type = "gem"; }; - version = "0.3.11"; + version = "1.0.1"; }; - poltergeist = { - dependencies = ["capybara" "cliver" "multi_json" "websocket-driver"]; + gitlab-grit = { + dependencies = ["charlock_holmes" "diff-lcs" "mime-types" "posix-spawn"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0ppm4isvbxm739508yjhvisq1iwp1q6h8dx4hkndj2krskavz4i9"; + sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; type = "gem"; }; - version = "1.8.1"; + version = "2.7.3"; }; - pg = { + gitlab_emoji = { source = { remotes = ["https://rubygems.org"]; - sha256 = "07dv4ma9xd75xpsnnwwg1yrpwpji7ydy0q1d9dl0yfqbzpidrw32"; + sha256 = "1dy746icdmyc548mb5xkavvkn37pk7vv3gznx0p6hff325pan8dj"; type = "gem"; }; - version = "0.18.4"; + version = "0.3.1"; }; - parser = { - dependencies = ["ast"]; + gitlab_git = { source = { remotes = ["https://rubygems.org"]; - sha256 = "14db0gam24j04iprqz4m3hxygkb8h0plnbm0yk4k3lzq6j5wzcac"; + sha256 = "0311dl4vh6h7k8xarmpr61fndrhbmfskzjzkkj1rr8321gn8znfv"; type = "gem"; }; - version = "2.2.3.0"; + version = "8.2.0"; }; - paranoia = { - dependencies = ["activerecord"]; + gitlab_meta = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0z2smnnghjhcs4l5fkz9scs1kj0bvj2n8xmzcvw4rg9yprdnlxr0"; + sha256 = "14vahv7gblcypbvip845sg3lvawf3kij61mkxz5vyfcv23niqvp9"; type = "gem"; }; - version = "2.1.4"; + version = "7.0"; }; - orm_adapter = { + gitlab_omniauth-ldap = { + dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; + sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; type = "gem"; }; - version = "0.5.0"; + version = "1.2.1"; }; - org-ruby = { - dependencies = ["rubypants"]; + globalid = { + dependencies = ["activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; + sha256 = "145xrpsfx1qqjy33r6qa588wb16dvdhxzj2aysh755vhg6hgm291"; type = "gem"; }; - version = "0.9.12"; + version = "0.3.6"; }; - omniauth_crowd = { - dependencies = ["activesupport" "nokogiri" "omniauth"]; + gollum-grit_adapter = { + dependencies = ["gitlab-grit"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "12g5ck05h6kr9mnp870x8pkxsadg81ca70hg8n3k8xx007lfw2q7"; + sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7"; type = "gem"; }; - version = "2.2.3"; + version = "1.0.0"; }; - omniauth-twitter = { - dependencies = ["json" "omniauth-oauth"]; + gollum-lib = { + dependencies = ["github-markup" "gollum-grit_adapter" "nokogiri" "rouge" "sanitize" "stringex"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hqjpb1zx0pp3s12c83pkpk4kkx41f001jc5n8qz0h3wll0ld833"; + sha256 = "01s8pgzhc3cgcmsy6hh79wrcbn5vbadniq2a7d4qw87kpq7mzfdm"; type = "gem"; }; - version = "1.2.1"; + version = "4.1.0"; }; - omniauth-shibboleth = { - dependencies = ["omniauth"]; + gon = { + dependencies = ["actionpack" "json" "multi_json" "request_store"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0a8pwy23aybxhn545357zdjy0hnpfgldwqk5snmz9kxingpq12jl"; + sha256 = "1f359cd9zsa4nrng35bij5skvjrj5ywn2dhmlg41b97vmza26bxr"; type = "gem"; }; - version = "1.2.1"; + version = "6.0.1"; }; - omniauth-saml = { + grape = { + dependencies = ["activesupport" "builder" "hashie" "multi_json" "multi_xml" "rack" "rack-accept" "rack-mount" "virtus"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0c7pypskq9y6wbl7c8gnp48j256snph11br3csgwvy9whjfisx65"; + sha256 = "1dxfal5jspxq612jjkqbd7xgp5dswdyllbbfq6fj2m7s21pismmh"; type = "gem"; }; - version = "1.4.2"; + version = "0.13.0"; }; - omniauth-oauth2 = { - dependencies = ["oauth2" "omniauth"]; + grape-entity = { + dependencies = ["activesupport" "multi_json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; + sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; type = "gem"; }; - version = "1.3.1"; + version = "0.4.8"; }; - omniauth-oauth = { - dependencies = ["oauth" "omniauth"]; + haml = { + dependencies = ["tilt"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; + sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; type = "gem"; }; - version = "1.1.0"; + version = "4.0.7"; }; - omniauth-multipassword = { - dependencies = ["omniauth"]; + haml-rails = { + dependencies = ["actionpack" "activesupport" "haml" "html2haml" "railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0qykp76hw80lkgb39hyzrv68hkbivc8cv0vbvrnycjh9fwfp1lv8"; + sha256 = "1hbfznkxab663hxp1v6gpsa7sv6w1fnw9r8b3flixwylnwh3c5dz"; type = "gem"; }; - version = "0.4.2"; + version = "0.9.0"; }; - omniauth-kerberos = { - dependencies = ["omniauth-multipassword" "timfel-krb5-auth"]; + hashie = { source = { remotes = ["https://rubygems.org"]; - sha256 = "05xsv76qjxcxzrvabaar2bchv7435y8l2j0wk4zgchh3yv85kiq7"; + sha256 = "1iv5hd0zcryprx9lbcm615r3afc0d6rhc27clywmhhgpx68k8899"; type = "gem"; }; - version = "0.3.0"; + version = "3.4.3"; }; - omniauth-google-oauth2 = { - dependencies = ["addressable" "jwt" "multi_json" "omniauth" "omniauth-oauth2"]; + highline = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1lm4fk6ig9vwzv7398qd861325g678sfr1iv2mm60xswl69964fi"; + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; type = "gem"; }; - version = "0.2.10"; + version = "1.7.8"; }; - omniauth-gitlab = { - dependencies = ["omniauth" "omniauth-oauth2"]; + hike = { source = { remotes = ["https://rubygems.org"]; - sha256 = "083yyc8612kq8ygd8y7s8lxg2d51jcsakbs4pa19aww67gcm72iz"; + sha256 = "0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm"; type = "gem"; }; - version = "1.0.1"; + version = "1.2.3"; }; - omniauth-github = { - dependencies = ["omniauth" "omniauth-oauth2"]; + hipchat = { + dependencies = ["httparty" "mimemagic"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1mbx3c8m1llhdxrqdciq8jh428bxj1nvf4yhziv2xqmqpjcqz617"; + sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; type = "gem"; }; - version = "1.1.2"; + version = "1.5.2"; }; - omniauth-facebook = { - dependencies = ["omniauth-oauth2"]; + html-pipeline = { + dependencies = ["activesupport" "nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0plj56sna4b6c71k03jsng6gq3r5yxhj7h26ndahc9caasgk869c"; + sha256 = "1yckdlrn4v5d7bgl8mbffax16640pgg9ny693kqi4j7g17vx2q9l"; type = "gem"; }; - version = "3.0.0"; + version = "1.11.0"; }; - omniauth-cas3 = { - dependencies = ["addressable" "nokogiri" "omniauth"]; + html2haml = { + dependencies = ["erubis" "haml" "nokogiri" "ruby_parser"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "13swm2hi2z63nvb2bps6g41kki8kr9b5c7014rk8259bxlpflrk7"; + sha256 = "069zcy8lr010hn4qmbi8g5srdf69brk8nbgx4zcqcgbgsl4m8d4i"; type = "gem"; }; - version = "1.1.3"; + version = "2.0.0"; }; - omniauth-bitbucket = { - dependencies = ["multi_json" "omniauth" "omniauth-oauth"]; + http-cookie = { + dependencies = ["domain_name"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1lals2z1yixffrc97zh7zn1jpz9l6vpb3alcp13im42dq9q0g845"; + sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; type = "gem"; }; - version = "0.0.2"; + version = "1.0.2"; }; - omniauth-azure-oauth2 = { - dependencies = ["jwt" "omniauth" "omniauth-oauth2"]; + "http_parser.rb" = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0qay454zvyas8xfnfkycqpjkafaq5pw4gaji176cdfw0blhviz0s"; + sha256 = "0fwf5d573j1sw52kz057dw0nx2wlivczmx6ybf6mk065n5g54kyn"; type = "gem"; }; - version = "0.0.6"; + version = "0.5.3"; }; - omniauth = { + httparty = { + dependencies = ["json" "multi_xml"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0vsqxgzkcfi10b7k6vpv3shmlphbs8grc29hznwl9s0i16n8962p"; + sha256 = "0c9gvg6dqw2h3qyaxhrq1pzm6r69zfcmfh038wyhisqsd39g9hr2"; type = "gem"; }; - version = "1.3.1"; + version = "0.13.7"; }; - octokit = { + httpclient = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0vmknh0vz1g734q32kgpxv0qwz9ifmnw2jfpd2w5rrk6xwq1k7a8"; + sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; type = "gem"; }; - version = "3.8.0"; + version = "2.7.0.1"; }; - oauth2 = { - dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; + i18n = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; + sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; type = "gem"; }; - version = "1.0.0"; + version = "0.7.0"; }; - oauth = { + ice_nine = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1k5j09p3al3clpjl6lax62qmhy43f3j3g7i6f9l4dbs6r5vpv95w"; + sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; type = "gem"; }; - version = "0.4.7"; + version = "0.11.1"; }; - nprogress-rails = { + inflecto = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1ylq2208i95661ba0p1ng2i38z4978ddwiidvpb614amfdq5pqvn"; + sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; type = "gem"; }; - version = "0.1.6.7"; + version = "0.0.2"; }; - nokogiri = { - dependencies = ["mini_portile2"]; + influxdb = { + dependencies = ["cause" "json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; - type = "gem"; - }; - version = "1.6.7.2"; - }; - newrelic_rpm = { - version = "3.14.1.311"; - source = { + sha256 = "1vhg5nd88nwvfa76lqcczld916nljswwq6clsixrzi3js8ym9y1w"; type = "gem"; - remotes = ["https://rubygems.org"]; - sha256 = "155aj845rxn8ikcs15gphr8svnsrki8wzps794ddbi90h0ypr319"; }; + version = "0.2.3"; }; - netrc = { + ipaddress = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y"; + sha256 = "0sl0ldvhd6j0qbwhz18w24qy65mdj448b2vhgh2cwn7xrkksmv9l"; type = "gem"; }; - version = "0.11.0"; + version = "0.8.2"; }; - net-ssh = { + jquery-atwho-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1dzqkgwi9xm6mbfk1rkk17rzmz8m5xakqi21w1b97ybng6kkw0hf"; + sha256 = "0g8239cddyi48i5n0hq2acg9k7n7jilhby9g36zd19mwqyia16w9"; type = "gem"; }; - version = "3.0.1"; + version = "1.3.2"; }; - net-ldap = { + jquery-rails = { + dependencies = ["rails-dom-testing" "railties" "thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0z1j0zklbbx3vi91zcd2v0fnkfgkvq3plisa6hxaid8sqndyak46"; + sha256 = "028dv2n0r2r8qj1bqcbzmih0hwzh5km6cvscn2808v5gd44z48r1"; type = "gem"; }; - version = "0.12.1"; + version = "4.0.5"; }; - nested_form = { + jquery-scrollto-rails = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0f053j4zfagxyym28msxj56hrpvmyv4lzxy2c5c270f7xbbnii5i"; + sha256 = "12ic0zxw60ryglm1qjq5ralqd6k4jawmjj7kqnp1nkqds2nvinvp"; type = "gem"; }; - version = "0.3.2"; + version = "1.4.3"; }; - mysql2 = { + jquery-turbolinks = { + dependencies = ["railties" "turbolinks"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0n075x14n9kziv0qdxqlzhf3j1abi1w6smpakfpsg4jbr8hnn5ip"; + sha256 = "1d23mnl3lgamk9ziw4yyv2ixck6d8s8xp4f9pmwimk0by0jq7xhc"; type = "gem"; }; - version = "0.3.20"; + version = "2.1.0"; }; - multipart-post = { + jquery-ui-rails = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; + sha256 = "1gfygrv4bjpjd2c377lw7xzk1b77rxjyy3w6wl4bq1gkqvyrkx77"; type = "gem"; }; - version = "2.0.0"; + version = "5.0.5"; }; - multi_xml = { + json = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0i8r7dsz4z79z3j023l8swan7qpbgxbwwz11g38y2vjqjk16v4q8"; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; type = "gem"; }; - version = "0.5.5"; + version = "1.8.3"; }; - multi_json = { + jwt = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; + sha256 = "0is8973si98rsry5igqdag2jb1knj6jhmfkr9r4mc5n0yvgr5n2q"; type = "gem"; }; - version = "1.11.2"; + version = "1.5.2"; }; - mousetrap-rails = { + kaminari = { + dependencies = ["actionpack" "activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "00n13r5pwrk4vq018128vcfh021dw0fa2bk4pzsv0fslfm8ayp2m"; + sha256 = "14vx3kgssl4lv2kn6grr5v2whsynx5rbl1j9aqiq8nc3d7j74l67"; type = "gem"; }; - version = "1.4.6"; + version = "0.16.3"; }; - minitest = { + kgio = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; + sha256 = "1y6wl3vpp82rdv5g340zjgkmy6fny61wib7xylyg0d09k5f26118"; type = "gem"; }; - version = "5.7.0"; + version = "2.10.0"; }; - mini_portile2 = { + launchy = { + dependencies = ["addressable"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "056drbn5m4khdxly1asmiik14nyllswr6sh3wallvsywwdiryz8l"; + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; type = "gem"; }; - version = "2.0.0"; + version = "2.4.3"; }; - mimemagic = { + letter_opener = { + dependencies = ["launchy"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; + sha256 = "1kzbmc686hfh4jznyckq6g40kn14nhb71znsjjm0rc13nb3n0c5l"; type = "gem"; }; - version = "0.3.0"; + version = "1.1.2"; }; - mime-types = { + listen = { + dependencies = ["rb-fsevent" "rb-inotify"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; + sha256 = "182wd2pkf690ll19lx6zbk01a3rqkk5lwsyin6kwydl7lqxj5z3g"; type = "gem"; }; - version = "1.25.1"; + version = "3.0.5"; }; - method_source = { + loofah = { + dependencies = ["nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; + sha256 = "109ps521p0sr3kgc460d58b4pr1z4mqggan2jbsf0aajy9s6xis8"; type = "gem"; }; - version = "0.8.2"; + version = "2.0.3"; }; - mail_room = { + macaddr = { + dependencies = ["systemu"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0jpybhgw9yi50g422qvnwadn5jnj563vh70qaml5cxzdqxbd7fj1"; + sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; type = "gem"; }; - version = "0.6.1"; + version = "1.7.1"; }; mail = { dependencies = ["mime-types"]; @@ -1510,1508 +1504,1514 @@ }; version = "2.6.3"; }; - macaddr = { - dependencies = ["systemu"]; + mail_room = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b"; + sha256 = "0jpybhgw9yi50g422qvnwadn5jnj563vh70qaml5cxzdqxbd7fj1"; type = "gem"; }; - version = "1.7.1"; + version = "0.6.1"; }; - loofah = { - dependencies = ["nokogiri"]; + method_source = { source = { remotes = ["https://rubygems.org"]; - sha256 = "109ps521p0sr3kgc460d58b4pr1z4mqggan2jbsf0aajy9s6xis8"; + sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; type = "gem"; }; - version = "2.0.3"; + version = "0.8.2"; }; - listen = { - dependencies = ["rb-fsevent" "rb-inotify"]; + mime-types = { source = { remotes = ["https://rubygems.org"]; - sha256 = "182wd2pkf690ll19lx6zbk01a3rqkk5lwsyin6kwydl7lqxj5z3g"; + sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; type = "gem"; }; - version = "3.0.5"; + version = "1.25.1"; }; - letter_opener = { - dependencies = ["launchy"]; + mimemagic = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1kzbmc686hfh4jznyckq6g40kn14nhb71znsjjm0rc13nb3n0c5l"; + sha256 = "101lq4bnjs7ywdcicpw3vbz9amg5gbb4va1626fybd2hawgdx8d9"; type = "gem"; }; - version = "1.1.2"; + version = "0.3.0"; }; - launchy = { - dependencies = ["addressable"]; + mini_portile2 = { source = { remotes = ["https://rubygems.org"]; - sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; + sha256 = "056drbn5m4khdxly1asmiik14nyllswr6sh3wallvsywwdiryz8l"; type = "gem"; }; - version = "2.4.3"; + version = "2.0.0"; }; - kgio = { + minitest = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1y6wl3vpp82rdv5g340zjgkmy6fny61wib7xylyg0d09k5f26118"; + sha256 = "0rxqfakp629mp3vwda7zpgb57lcns5znkskikbfd0kriwv8i1vq8"; type = "gem"; }; - version = "2.10.0"; + version = "5.7.0"; }; - kaminari = { - dependencies = ["actionpack" "activesupport"]; + mousetrap-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "14vx3kgssl4lv2kn6grr5v2whsynx5rbl1j9aqiq8nc3d7j74l67"; + sha256 = "00n13r5pwrk4vq018128vcfh021dw0fa2bk4pzsv0fslfm8ayp2m"; type = "gem"; }; - version = "0.16.3"; + version = "1.4.6"; }; - jwt = { + multi_json = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0is8973si98rsry5igqdag2jb1knj6jhmfkr9r4mc5n0yvgr5n2q"; + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; type = "gem"; }; - version = "1.5.2"; + version = "1.11.2"; }; - json = { + multi_xml = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + sha256 = "0i8r7dsz4z79z3j023l8swan7qpbgxbwwz11g38y2vjqjk16v4q8"; type = "gem"; }; - version = "1.8.3"; + version = "0.5.5"; }; - jquery-ui-rails = { - dependencies = ["railties"]; + multipart-post = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1gfygrv4bjpjd2c377lw7xzk1b77rxjyy3w6wl4bq1gkqvyrkx77"; + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; type = "gem"; }; - version = "5.0.5"; + version = "2.0.0"; }; - jquery-turbolinks = { - dependencies = ["railties" "turbolinks"]; + mysql2 = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1d23mnl3lgamk9ziw4yyv2ixck6d8s8xp4f9pmwimk0by0jq7xhc"; + sha256 = "0n075x14n9kziv0qdxqlzhf3j1abi1w6smpakfpsg4jbr8hnn5ip"; type = "gem"; }; - version = "2.1.0"; + version = "0.3.20"; }; - jquery-scrollto-rails = { - dependencies = ["railties"]; + nested_form = { source = { remotes = ["https://rubygems.org"]; - sha256 = "12ic0zxw60ryglm1qjq5ralqd6k4jawmjj7kqnp1nkqds2nvinvp"; + sha256 = "0f053j4zfagxyym28msxj56hrpvmyv4lzxy2c5c270f7xbbnii5i"; type = "gem"; }; - version = "1.4.3"; + version = "0.3.2"; }; - jquery-rails = { - dependencies = ["rails-dom-testing" "railties" "thor"]; + net-ldap = { source = { remotes = ["https://rubygems.org"]; - sha256 = "028dv2n0r2r8qj1bqcbzmih0hwzh5km6cvscn2808v5gd44z48r1"; + sha256 = "0z1j0zklbbx3vi91zcd2v0fnkfgkvq3plisa6hxaid8sqndyak46"; type = "gem"; }; - version = "4.0.5"; + version = "0.12.1"; }; - jquery-atwho-rails = { + net-ssh = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0g8239cddyi48i5n0hq2acg9k7n7jilhby9g36zd19mwqyia16w9"; + sha256 = "1dzqkgwi9xm6mbfk1rkk17rzmz8m5xakqi21w1b97ybng6kkw0hf"; type = "gem"; }; - version = "1.3.2"; + version = "3.0.1"; }; - ipaddress = { + netrc = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0sl0ldvhd6j0qbwhz18w24qy65mdj448b2vhgh2cwn7xrkksmv9l"; + sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y"; type = "gem"; }; - version = "0.8.2"; + version = "0.11.0"; }; - influxdb = { - dependencies = ["cause" "json"]; + newrelic_rpm = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1vhg5nd88nwvfa76lqcczld916nljswwq6clsixrzi3js8ym9y1w"; + sha256 = "155aj845rxn8ikcs15gphr8svnsrki8wzps794ddbi90h0ypr319"; type = "gem"; }; - version = "0.2.3"; + version = "3.14.1.311"; }; - inflecto = { + nokogiri = { + dependencies = ["mini_portile2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "085l5axmvqw59mw5jg454a3m3gr67ckq9405a075isdsn7bm3sp4"; + sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; type = "gem"; }; - version = "0.0.2"; + version = "1.6.7.2"; }; - ice_nine = { + nprogress-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0i674zq0hl6rd0wcd12ni38linfja4k0y3mk5barjb4a6f7rcmkd"; + sha256 = "1ylq2208i95661ba0p1ng2i38z4978ddwiidvpb614amfdq5pqvn"; type = "gem"; }; - version = "0.11.1"; + version = "0.1.6.7"; }; - i18n = { + oauth = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1i5z1ykl8zhszsxcs8mzl8d0dxgs3ylz8qlzrw74jb0gplkx6758"; + sha256 = "1k5j09p3al3clpjl6lax62qmhy43f3j3g7i6f9l4dbs6r5vpv95w"; type = "gem"; }; - version = "0.7.0"; + version = "0.4.7"; }; - httpclient = { + oauth2 = { + dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; + sha256 = "0zaa7qnvizv363apmxx9vxa8f6c6xy70z0jm0ydx38xvhxr8898r"; type = "gem"; }; - version = "2.7.0.1"; + version = "1.0.0"; }; - httparty = { - dependencies = ["json" "multi_xml"]; + octokit = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0c9gvg6dqw2h3qyaxhrq1pzm6r69zfcmfh038wyhisqsd39g9hr2"; + sha256 = "0vmknh0vz1g734q32kgpxv0qwz9ifmnw2jfpd2w5rrk6xwq1k7a8"; type = "gem"; }; - version = "0.13.7"; + version = "3.8.0"; }; - "http_parser.rb" = { + omniauth = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0fwf5d573j1sw52kz057dw0nx2wlivczmx6ybf6mk065n5g54kyn"; + sha256 = "0vsqxgzkcfi10b7k6vpv3shmlphbs8grc29hznwl9s0i16n8962p"; type = "gem"; }; - version = "0.5.3"; + version = "1.3.1"; }; - http-cookie = { - dependencies = ["domain_name"]; + omniauth-azure-oauth2 = { + dependencies = ["jwt" "omniauth" "omniauth-oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw"; + sha256 = "0qay454zvyas8xfnfkycqpjkafaq5pw4gaji176cdfw0blhviz0s"; type = "gem"; }; - version = "1.0.2"; + version = "0.0.6"; }; - html2haml = { - dependencies = ["erubis" "haml" "nokogiri" "ruby_parser"]; + omniauth-bitbucket = { + dependencies = ["multi_json" "omniauth" "omniauth-oauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "069zcy8lr010hn4qmbi8g5srdf69brk8nbgx4zcqcgbgsl4m8d4i"; + sha256 = "1lals2z1yixffrc97zh7zn1jpz9l6vpb3alcp13im42dq9q0g845"; type = "gem"; }; - version = "2.0.0"; + version = "0.0.2"; }; - html-pipeline = { - dependencies = ["activesupport" "nokogiri"]; + omniauth-cas3 = { + dependencies = ["addressable" "nokogiri" "omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1yckdlrn4v5d7bgl8mbffax16640pgg9ny693kqi4j7g17vx2q9l"; + sha256 = "13swm2hi2z63nvb2bps6g41kki8kr9b5c7014rk8259bxlpflrk7"; type = "gem"; }; - version = "1.11.0"; + version = "1.1.3"; }; - hipchat = { - dependencies = ["httparty" "mimemagic"]; + omniauth-facebook = { + dependencies = ["omniauth-oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hgy5jav479vbzzk53lazhpjj094dcsqw6w1d6zjn52p72bwq60k"; + sha256 = "0plj56sna4b6c71k03jsng6gq3r5yxhj7h26ndahc9caasgk869c"; type = "gem"; }; - version = "1.5.2"; + version = "3.0.0"; }; - hike = { + omniauth-github = { + dependencies = ["omniauth" "omniauth-oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm"; + sha256 = "1mbx3c8m1llhdxrqdciq8jh428bxj1nvf4yhziv2xqmqpjcqz617"; type = "gem"; }; - version = "1.2.3"; + version = "1.1.2"; }; - highline = { + omniauth-gitlab = { + dependencies = ["omniauth" "omniauth-oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; + sha256 = "083yyc8612kq8ygd8y7s8lxg2d51jcsakbs4pa19aww67gcm72iz"; type = "gem"; }; - version = "1.7.8"; + version = "1.0.1"; }; - hashie = { + omniauth-google-oauth2 = { + dependencies = ["addressable" "jwt" "multi_json" "omniauth" "omniauth-oauth2"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1iv5hd0zcryprx9lbcm615r3afc0d6rhc27clywmhhgpx68k8899"; + sha256 = "1lm4fk6ig9vwzv7398qd861325g678sfr1iv2mm60xswl69964fi"; type = "gem"; }; - version = "3.4.3"; + version = "0.2.10"; }; - haml-rails = { - dependencies = ["actionpack" "activesupport" "haml" "html2haml" "railties"]; + omniauth-kerberos = { + dependencies = ["omniauth-multipassword" "timfel-krb5-auth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hbfznkxab663hxp1v6gpsa7sv6w1fnw9r8b3flixwylnwh3c5dz"; + sha256 = "05xsv76qjxcxzrvabaar2bchv7435y8l2j0wk4zgchh3yv85kiq7"; type = "gem"; }; - version = "0.9.0"; + version = "0.3.0"; }; - haml = { - dependencies = ["tilt"]; + omniauth-multipassword = { + dependencies = ["omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mrzjgkygvfii66bbylj2j93na8i89998yi01fin3whwqbvx0m1p"; + sha256 = "0qykp76hw80lkgb39hyzrv68hkbivc8cv0vbvrnycjh9fwfp1lv8"; type = "gem"; }; - version = "4.0.7"; + version = "0.4.2"; }; - grape-entity = { - dependencies = ["activesupport" "multi_json"]; + omniauth-oauth = { + dependencies = ["oauth" "omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hxghs2p9ncvdwhp6dwr1a74g552c49dd0jzy0szp4pg2xjbgjk8"; + sha256 = "1n5vk4by7hkyc09d9blrw2argry5awpw4gbw1l4n2s9b3j4qz037"; type = "gem"; }; - version = "0.4.8"; + version = "1.1.0"; }; - grape = { - dependencies = ["activesupport" "builder" "hashie" "multi_json" "multi_xml" "rack" "rack-accept" "rack-mount" "virtus"]; + omniauth-oauth2 = { + dependencies = ["oauth2" "omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1dxfal5jspxq612jjkqbd7xgp5dswdyllbbfq6fj2m7s21pismmh"; + sha256 = "0mskwlw5ibx9mz7ywqji6mm56ikf7mglbnfc02qhg6ry527jsxdm"; type = "gem"; }; - version = "0.13.0"; + version = "1.3.1"; }; - gon = { - dependencies = ["actionpack" "json" "multi_json" "request_store"]; + omniauth-saml = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1f359cd9zsa4nrng35bij5skvjrj5ywn2dhmlg41b97vmza26bxr"; + sha256 = "0c7pypskq9y6wbl7c8gnp48j256snph11br3csgwvy9whjfisx65"; type = "gem"; }; - version = "6.0.1"; + version = "1.4.2"; }; - gollum-lib = { - dependencies = ["github-markup" "gollum-grit_adapter" "nokogiri" "rouge" "sanitize" "stringex"]; + omniauth-shibboleth = { + dependencies = ["omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "01s8pgzhc3cgcmsy6hh79wrcbn5vbadniq2a7d4qw87kpq7mzfdm"; + sha256 = "0a8pwy23aybxhn545357zdjy0hnpfgldwqk5snmz9kxingpq12jl"; type = "gem"; }; - version = "4.1.0"; + version = "1.2.1"; }; - gollum-grit_adapter = { - dependencies = ["gitlab-grit"]; + omniauth-twitter = { + dependencies = ["json" "omniauth-oauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "02c5qfq0s0kx2ifnpbnbgz6258fl7rchzzzc7vpx72shi8gbpac7"; + sha256 = "1hqjpb1zx0pp3s12c83pkpk4kkx41f001jc5n8qz0h3wll0ld833"; type = "gem"; }; - version = "1.0.0"; + version = "1.2.1"; }; - globalid = { - dependencies = ["activesupport"]; + omniauth_crowd = { + dependencies = ["activesupport" "nokogiri" "omniauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "145xrpsfx1qqjy33r6qa588wb16dvdhxzj2aysh755vhg6hgm291"; + sha256 = "12g5ck05h6kr9mnp870x8pkxsadg81ca70hg8n3k8xx007lfw2q7"; type = "gem"; }; - version = "0.3.6"; + version = "2.2.3"; }; - gitlab_omniauth-ldap = { - dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"]; + org-ruby = { + dependencies = ["rubypants"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vbdyi57vvlrigyfhmqrnkw801x57fwa3gxvj1rj2bn9ig5186ri"; + sha256 = "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"; type = "gem"; }; - version = "1.2.1"; + version = "0.9.12"; }; - gitlab_meta = { + orm_adapter = { source = { remotes = ["https://rubygems.org"]; - sha256 = "14vahv7gblcypbvip845sg3lvawf3kij61mkxz5vyfcv23niqvp9"; + sha256 = "1fg9jpjlzf5y49qs9mlpdrgs5rpcyihq1s4k79nv9js0spjhnpda"; type = "gem"; }; - version = "7.0"; + version = "0.5.0"; }; - gitlab_git = { + paranoia = { + dependencies = ["activerecord"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0311dl4vh6h7k8xarmpr61fndrhbmfskzjzkkj1rr8321gn8znfv"; + sha256 = "0z2smnnghjhcs4l5fkz9scs1kj0bvj2n8xmzcvw4rg9yprdnlxr0"; type = "gem"; }; - version = "8.2.0"; + version = "2.1.4"; }; - gitlab_emoji = { + parser = { + dependencies = ["ast"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1dy746icdmyc548mb5xkavvkn37pk7vv3gznx0p6hff325pan8dj"; + sha256 = "14db0gam24j04iprqz4m3hxygkb8h0plnbm0yk4k3lzq6j5wzcac"; type = "gem"; }; - version = "0.3.1"; + version = "2.2.3.0"; }; - gitlab-grit = { - dependencies = ["charlock_holmes" "diff-lcs" "mime-types" "posix-spawn"]; + pg = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0nv8shx7w7fww8lf5a2rbvf7bq173rllm381m6x7g1i0qqc68q1b"; + sha256 = "07dv4ma9xd75xpsnnwwg1yrpwpji7ydy0q1d9dl0yfqbzpidrw32"; type = "gem"; }; - version = "2.7.3"; + version = "0.18.4"; }; - gitlab-flowdock-git-hook = { - dependencies = ["flowdock" "gitlab-grit" "multi_json"]; + poltergeist = { + dependencies = ["capybara" "cliver" "multi_json" "websocket-driver"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1s3a10cdbh4xy732b92zcsm5zyc1lhi5v29d76j8mwbqmj11a2p8"; + sha256 = "0ppm4isvbxm739508yjhvisq1iwp1q6h8dx4hkndj2krskavz4i9"; type = "gem"; }; - version = "1.0.1"; + version = "1.8.1"; }; - github-markup = { + posix-spawn = { source = { remotes = ["https://rubygems.org"]; - sha256 = "01r901wcgn0gs0n9h684gs5n90y1vaj9lxnx4z5ig611jwa43ivq"; + sha256 = "052lnxbkvlnwfjw4qd7vn2xrlaaqiav6f5x5bcjin97bsrfq6cmr"; type = "gem"; }; - version = "1.3.3"; + version = "0.3.11"; }; - github-linguist = { + powerpack = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1xxm2lbabkc1xmx2myv56a4fkw3wwg9n8w2bzwrl4s33kf6x62ag"; + sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; type = "gem"; }; - version = "4.7.5"; + version = "0.1.1"; }; - gherkin-ruby = { + pry = { + dependencies = ["coderay" "method_source" "slop"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "18ay7yiibf4sl9n94k7mbi4k5zj2igl4j71qcmkswv69znyx0sn1"; + sha256 = "1x78rvp69ws37kwig18a8hr79qn36vh8g1fn75p485y3b3yiqszg"; type = "gem"; }; - version = "0.3.2"; + version = "0.10.3"; }; - get_process_mem = { + pry-rails = { + dependencies = ["pry"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; + sha256 = "0a2iinvabis2xmv0z7z7jmh7bbkkngxj2qixfdg5m6qj9x8k1kx6"; type = "gem"; }; - version = "0.2.0"; + version = "0.3.4"; }; - gemojione = { + pyu-ruby-sasl = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0av60lajn64z1csmkzfaf5wvpd3x48lcshiknkqr8m0zx3sg7w3h"; + sha256 = "1rcpjiz9lrvyb3rd8k8qni0v4ps08psympffyldmmnrqayyad0sn"; type = "gem"; }; - version = "2.2.1"; + version = "0.0.3.3"; }; - gemnasium-gitlab-service = { - dependencies = ["rugged"]; + quiet_assets = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qv7fkahmqkah3770ycrxd0x2ais4z41hb43a0r8q8wcdklns3m3"; + sha256 = "1q4azw4j1xsgd7qwcig110mfdn1fm0y34y87zw9j9v187xr401b1"; type = "gem"; }; - version = "0.2.6"; + version = "1.0.3"; }; - fuubar = { - dependencies = ["rspec" "ruby-progressbar"]; + rack = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0xwqs24y8s73aayh39si17kccsmr0bjgmi6jrjyfp7gkjb6iyhpv"; + sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; type = "gem"; }; - version = "2.0.0"; + version = "1.6.4"; }; - formatador = { + rack-accept = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"; + sha256 = "18jdipx17b4ki33cfqvliapd31sbfvs4mv727awynr6v95a7n936"; type = "gem"; }; - version = "0.2.5"; + version = "0.4.5"; }; - foreman = { - dependencies = ["thor"]; + rack-attack = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1caz8mi7gq1hs4l1flcyyw1iw1bdvdbhppsvy12akr01k3s17xaq"; + sha256 = "0ihic8ar2ddfv15p5gia8nqzsl3y7iayg5v4rmg72jlvikgsabls"; type = "gem"; }; - version = "0.78.0"; + version = "4.3.1"; }; - font-awesome-rails = { - dependencies = ["railties"]; + rack-cors = { source = { remotes = ["https://rubygems.org"]; - sha256 = "09x1bg98sp2v1lsg9h2bal915q811xq84h9d74p1f3378ga63c1x"; + sha256 = "1sz9d9gjmv2vjl3hddzk269hb1k215k8sp37gicphx82h3chk1kw"; type = "gem"; }; - version = "4.5.0.0"; + version = "0.4.0"; }; - fog-xml = { - dependencies = ["fog-core" "nokogiri"]; + rack-mount = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1576sbzza47z48p0k9h1wg3rhgcvcvdd1dfz3xx1cgahwr564fqa"; + sha256 = "09a1qfaxxsll1kbgz7z0q0nr48sfmfm7akzaviis5bjpa5r00ld2"; type = "gem"; }; - version = "0.1.2"; + version = "0.8.3"; }; - fog-xenserver = { - dependencies = ["fog-core" "fog-xml"]; + rack-oauth2 = { + dependencies = ["activesupport" "attr_required" "httpclient" "multi_json" "rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ngw8hh8ljk7wi0cp8n4b4jcy2acx0yqzjk7851m3mp0kji5dlgl"; + sha256 = "1szfnb74p5s7k0glpmiv16rfl4wx9mnrr7riapgpbcx163zzkxad"; type = "gem"; }; - version = "0.2.2"; + version = "1.2.1"; }; - fog-voxel = { - dependencies = ["fog-core" "fog-xml"]; + rack-protection = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "10skdnj59yf4jpvq769njjrvh2l0wzaa7liva8n78qq003mvmfgx"; + sha256 = "0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r"; type = "gem"; }; - version = "0.1.0"; + version = "1.5.3"; }; - fog-vmfusion = { - dependencies = ["fission" "fog-core"]; + rack-test = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0g0l0k9ylxk1h9pzqr6h2ba98fl47lpp3j19lqv4jxw0iw1rqxn4"; + sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; type = "gem"; }; - version = "0.1.0"; + version = "0.6.3"; }; - fog-terremark = { - dependencies = ["fog-core" "fog-xml"]; + rails = { + dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "01lfkh9jppj0iknlklmwyb7ym3bfhkq58m3absb6rf5a5mcwi3lf"; + sha256 = "aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e"; type = "gem"; }; - version = "0.1.0"; + version = "4.2.5.2"; }; - fog-storm_on_demand = { - dependencies = ["fog-core" "fog-json"]; + rails-deprecated_sanitizer = { + dependencies = ["activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0fif1x8ci095b2yyilf65n7x6iyvn448azrsnmwsdkriy8vxxv3y"; + sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; type = "gem"; }; - version = "0.1.1"; + version = "1.0.3"; }; - fog-softlayer = { - dependencies = ["fog-core" "fog-json"]; + rails-dom-testing = { + dependencies = ["activesupport" "nokogiri" "rails-deprecated_sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zax2wws0q8pm787jnlxd2xlj23f2acz0s6jl5nzczyxjgll571r"; + sha256 = "1v8jl6803mbqpxh4hn0szj081q1a3ap0nb8ni0qswi7z4la844v8"; + type = "gem"; + }; + version = "1.0.7"; + }; + rails-html-sanitizer = { + dependencies = ["loofah"]; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "138fd86kv073zqfx0xifm646w6bgw2lr8snk16lknrrfrss8xnm7"; type = "gem"; }; version = "1.0.3"; }; - fog-serverlove = { - dependencies = ["fog-core" "fog-json"]; + railties = { + dependencies = ["actionpack" "activesupport" "rake" "thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hxgmwzygrw25rbsy05i6nzsyr0xl7xj5j2sjpkb9n9wli5sagci"; + sha256 = "cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146"; type = "gem"; }; - version = "0.1.2"; + version = "4.2.5.2"; }; - fog-sakuracloud = { - dependencies = ["fog-core" "fog-json"]; + rainbow = { source = { remotes = ["https://rubygems.org"]; - sha256 = "08krsn9sk5sx0aza812g31r169bd0zanb8pq5am3a64j6azarimd"; + sha256 = "0dsnzfjiih2w8npsjab3yx1ssmmvmgjkbxny0i9yzrdy7whfw7b4"; type = "gem"; }; - version = "1.7.5"; + version = "2.0.0"; }; - fog-riakcs = { - dependencies = ["fog-core" "fog-json" "fog-xml"]; + raindrops = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1nbxc4dky3agfwrmgm1aqmi59p6vnvfnfbhhg7xpg4c2cf41whxm"; + sha256 = "1hv0xhr762axywr937czi92fs0x3zk7k22vg6f4i7rr8d05sp560"; type = "gem"; }; - version = "0.1.0"; + version = "0.15.0"; }; - fog-radosgw = { - dependencies = ["fog-core" "fog-json" "fog-xml"]; + rake = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0nslgv8yp5qkiryj3zsm91gs7s6i626igj61kwxjjwk2yv6swyr6"; + sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; type = "gem"; }; - version = "0.0.5"; + version = "10.5.0"; }; - fog-profitbricks = { - dependencies = ["fog-core" "fog-xml" "nokogiri"]; + raphael-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "154sqs2dcmvg21v4m3fj8f09z5i70sq8a485v6rdygsffs8xrycn"; + sha256 = "0sjiaymvfn4al5dr1pza5i142byan0fxnj4rymziyql2bzvdm2bc"; type = "gem"; }; - version = "0.0.5"; + version = "2.1.2"; }; - fog-powerdns = { - dependencies = ["fog-core" "fog-json" "fog-xml"]; + rb-fsevent = { source = { remotes = ["https://rubygems.org"]; - sha256 = "08zavzwfkk344gz83phz4sy9nsjznsdjsmn1ifp6ja17bvydlhh7"; + sha256 = "1hq57by28iv0ijz8pk9ynih0xdg7vnl1010xjcijfklrcv89a1j2"; type = "gem"; }; - version = "0.1.1"; + version = "0.9.6"; }; - fog-local = { - dependencies = ["fog-core"]; + rb-inotify = { + dependencies = ["ffi"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0i5hxwzmc2ag3z9nlligsaf679kp2pz39cd8n2s9cmxaamnlh2s3"; + sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9"; type = "gem"; }; - version = "0.2.1"; + version = "0.9.5"; }; - fog-json = { - dependencies = ["fog-core" "multi_json"]; + rblineprof = { + dependencies = ["debugger-ruby_core_source"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0advkkdjajkym77r3c0bg2rlahl2akj0vl4p5r273k2qmi16n00r"; + sha256 = "0m58kdjgncwf0h1qry3qk5h4bg8sj0idykqqijqcrr09mxfd9yc6"; type = "gem"; }; - version = "1.0.2"; + version = "0.3.6"; }; - fog-google = { - dependencies = ["fog-core" "fog-json" "fog-xml"]; + rdoc = { + dependencies = ["json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0z4vmswpqwph04c0wqzrscns1d1wdm8kbxx457bv156mawzrhfj3"; + sha256 = "1v9k4sp5yzj2bshngckdvivj6bszciskk1nd2r3wri2ygs7vgqm8"; type = "gem"; }; - version = "0.1.0"; + version = "3.12.2"; }; - fog-ecloud = { - dependencies = ["fog-core" "fog-xml"]; + recaptcha = { + dependencies = ["json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "18rb4qjad9xwwqvvpj8r2h0hi9svy71pm4d3fc28cdcnfarmdi06"; + sha256 = "190qqklirmi31s6ih7png4h9xmx1p5h2n5fi45z90y8hsp5w1sh1"; type = "gem"; }; - version = "0.3.0"; + version = "1.0.2"; }; - fog-dynect = { - dependencies = ["fog-core" "fog-json" "fog-xml"]; + redcarpet = { source = { remotes = ["https://rubygems.org"]; - sha256 = "18lqmdkm22254z86jh3aa9v9vqk8bgbd3d1m0w7az3ij47ak7kch"; + sha256 = "14i3wypp97bpk20679d1csy88q4hsgfqbnqw6mryl77m2g0d09pk"; type = "gem"; }; - version = "0.0.2"; + version = "3.3.3"; }; - fog-core = { - dependencies = ["builder" "excon" "formatador"]; + RedCloth = { source = { remotes = ["https://rubygems.org"]; - sha256 = "02z91r3f5a64hlalm6h39v0778yl2kk3qvva0zvplpp9hpwbwzhl"; + sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl"; type = "gem"; }; - version = "1.35.0"; + version = "4.2.9"; }; - fog-brightbox = { - dependencies = ["fog-core" "fog-json" "inflecto"]; + redis = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0p7rbx587hb1d1am90dcr3zdp6y50c2zddh97yfgl62vji0pbkkd"; + sha256 = "0255w9izzs04hw9wivn05yqiwi34w28ylxs0xvpmwc1vrh18fwcl"; type = "gem"; }; - version = "0.10.1"; + version = "3.2.2"; }; - fog-aws = { - dependencies = ["fog-core" "fog-json" "fog-xml" "ipaddress"]; + redis-actionpack = { + dependencies = ["actionpack" "redis-rack" "redis-store"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1pzfahq8h3alfflb5dr8lm02q27x81vm96qn5zyfdlx86yy7bq96"; + sha256 = "1jjl6dhhpdapdaywq5iqz7z36mwbw0cn0m30wcc5wcbv7xmiiygw"; type = "gem"; }; - version = "0.8.1"; + version = "4.0.1"; }; - fog-atmos = { - dependencies = ["fog-core" "fog-xml"]; + redis-activesupport = { + dependencies = ["activesupport" "redis-store"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1aaxgnw9zy96gsh4h73kszypc32sx497s6bslvhfqh32q9d1y8c9"; + sha256 = "10y3kybz21n2z11478sf0cp4xzclvxf0b428787brmgpc6i7p7zg"; type = "gem"; }; - version = "0.1.0"; + version = "4.1.5"; }; - fog-aliyun = { - dependencies = ["fog-core" "fog-json" "ipaddress" "xml-simple"]; + redis-namespace = { + dependencies = ["redis"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i76g8sdskyfc0gcnd6n9i757s7dmwg3wf6spcr2xh8wzyxkm1pj"; + sha256 = "0rp8gfkznfxqzxk9s976k71jnljkh0clkrhnp6vgx46s5yhj9g25"; type = "gem"; }; - version = "0.1.0"; + version = "1.5.2"; }; - fog = { - dependencies = ["fog-aliyun" "fog-atmos" "fog-aws" "fog-brightbox" "fog-core" "fog-dynect" "fog-ecloud" "fog-google" "fog-json" "fog-local" "fog-powerdns" "fog-profitbricks" "fog-radosgw" "fog-riakcs" "fog-sakuracloud" "fog-serverlove" "fog-softlayer" "fog-storm_on_demand" "fog-terremark" "fog-vmfusion" "fog-voxel" "fog-xenserver" "fog-xml" "ipaddress" "nokogiri"]; + redis-rack = { + dependencies = ["rack" "redis-store"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ml31jdycqdm8w7w3l9pbyrgbnmrrnhmkppa2x4bwi9as1n1jmwq"; + sha256 = "1y1mxx8gn0krdrpwllv7fqsbvki1qjnb2dz8b4q9gwc326829gk8"; type = "gem"; }; - version = "1.36.0"; + version = "1.5.0"; }; - flowdock = { - dependencies = ["httparty" "multi_json"]; + redis-rails = { + dependencies = ["redis-actionpack" "redis-activesupport" "redis-store"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "04nrvg4gzgabf5mnnhccl8bwrkvn3y4pm7a1dqzqhpvfr4m5pafg"; + sha256 = "0igww7hb58aq74mh50dli3zjg78b54y8nhd0h1h9vz4vgjd4q8m7"; type = "gem"; }; - version = "0.7.1"; + version = "4.0.0"; }; - flog = { - dependencies = ["ruby_parser" "sexp_processor"]; + redis-store = { + dependencies = ["redis"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1asrcdj6gh5mxcimqak94jjyyi5cxnqn904lc8pmrljg1nv1bxpm"; + sha256 = "0gf462p0wx4hn7m1m8ghs701n6xx0ijzm5cff9xfagd2s6va145m"; type = "gem"; }; - version = "4.3.2"; + version = "1.1.7"; }; - flay = { - dependencies = ["ruby_parser" "sexp_processor"]; + request_store = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0zcp9nmnfqixdcqa2dzwwjy5np4n2n16bj25gw7bbzbjp9hqzhn6"; + sha256 = "01rxi2hw84y133z0r91jns4aaywd8d83wjq0xgb42iaicf0a90p9"; type = "gem"; }; - version = "2.6.1"; + version = "1.2.1"; }; - fission = { - dependencies = ["CFPropertyList"]; + rerun = { + dependencies = ["listen"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "09pmp1j1rr8r3pcmbn2na2ls7s1j9ijbxj99xi3a8r6v5xhjdjzh"; + sha256 = "0av239bpmy55fdx4qaw9n71aapjy2myr51h5plzjxsyr0fdwn1xq"; type = "gem"; }; - version = "0.5.0"; + version = "0.11.0"; }; - ffi = { + responders = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; + sha256 = "1i00bxp8fa67rzl50wfiaw16w21j5d5gwjjkdiwr0sw9q6ixmpz1"; type = "gem"; }; - version = "1.9.10"; + version = "2.1.1"; }; - ffaker = { + rest-client = { + dependencies = ["http-cookie" "mime-types" "netrc"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "19fnbbsw87asyb1hvkr870l2yldah2jcjb8074pgyrma5lynwmn0"; + sha256 = "1m8z0c4yf6w47iqz6j2p7x1ip4qnnzvhdph9d5fgx081cvjly3p7"; type = "gem"; }; - version = "2.0.0"; + version = "1.8.0"; }; - fastercsv = { + rinku = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1df3vfgw5wg0s405z0pj0rfcvnl9q6wak7ka8gn0xqg4cag1k66h"; + sha256 = "1jh6nys332brph55i6x6cil6swm086kxjw34wq131nl6mwryqp7b"; type = "gem"; }; - version = "1.5.5"; + version = "1.7.3"; }; - faraday_middleware-multi_json = { - dependencies = ["faraday_middleware" "multi_json"]; + rotp = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0651sxhzbq9xfq3hbpmrp0nbybxnm9ja3m97k386m4bqgamlvz1q"; + sha256 = "1nzsc9hfxijnyzjbv728ln9dm80bc608chaihjdk63i2wi4m529g"; type = "gem"; }; - version = "0.0.6"; + version = "2.1.1"; }; - faraday_middleware = { - dependencies = ["faraday"]; + rouge = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; + sha256 = "0wp8as9ypdy18kdj9h70kny1rdfq71mr8cj2bpahr9vxjjvjasqz"; type = "gem"; }; - version = "0.10.0"; + version = "1.10.1"; }; - faraday = { - dependencies = ["multipart-post"]; + rqrcode = { + dependencies = ["chunky_png"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; + sha256 = "188n1mvc7klrlw30bai16sdg4yannmy7cz0sg0nvm6f1kjx5qflb"; type = "gem"; }; - version = "0.9.2"; + version = "0.7.0"; }; - factory_girl_rails = { - dependencies = ["factory_girl" "railties"]; + rqrcode-rails3 = { + dependencies = ["rqrcode"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jj0yl6mfildb4g79dwgc1q5pv2pa65k9b1ml43mi8mg62j8mrhz"; + sha256 = "1i28rwmj24ssk91chn0g7qsnvn003y3s5a7jsrg3w4l5ckr841bg"; type = "gem"; }; - version = "4.3.0"; + version = "0.1.7"; }; - factory_girl = { - dependencies = ["activesupport"]; + rspec = { + dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "13z20a4b7z1c8vbz0qz5ranssdprldwvwlgjmn38x311sfjmp9dz"; + sha256 = "1bn5zs71agc0zyns2r3c8myi5bxw3q7xnzp7f3v5b7hbil1qym4r"; type = "gem"; }; - version = "4.3.0"; + version = "3.3.0"; }; - expression_parser = { + rspec-core = { + dependencies = ["rspec-support"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1938z3wmmdabqxlh5d5c56xfg1jc6z15p7zjyhvk7364zwydnmib"; + sha256 = "0xw5qi936j6nz9fixi2mwy03f406761cd72bzyvd61pr854d7hy1"; type = "gem"; }; - version = "0.9.0"; + version = "3.3.2"; }; - execjs = { + rspec-expectations = { + dependencies = ["diff-lcs" "rspec-support"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0grlxwiccbnflxs30r3h7g23xnps5knav1jyqkk3anvm8363ifjw"; + sha256 = "1d0b5hpkxlr9f3xpsbhvl3irnk4smmycx2xnmc8qv3pqaa7mb7ah"; type = "gem"; }; - version = "2.6.0"; + version = "3.3.1"; }; - excon = { + rspec-mocks = { + dependencies = ["diff-lcs" "rspec-support"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1shb4g3dhsfkywgjv6123yrvp2c8bvi8hqmq47iqa5lp72sn4b4w"; + sha256 = "1lfbzscmpyixlbapxmhy2s69596vs1z00lv590l51hgdw70z92vg"; type = "gem"; }; - version = "0.45.4"; + version = "3.3.2"; }; - eventmachine = { + rspec-rails = { + dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1frvpk3p73xc64qkn0ymll3flvn4xcycq5yx8a43zd3gyzc1ifjp"; + sha256 = "0m66n9p3a7d3fmrzkbh8312prb6dhrgmp53g1amck308ranasv2a"; type = "gem"; }; - version = "1.0.8"; + version = "3.3.3"; }; - escape_utils = { + rspec-support = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0hb8nmrgmd9n5dhih86fp91sf26mmw14sdn5vswg5g20svrqxc7x"; + sha256 = "1cyagig8slxjas8mbg5f8bl240b8zgr8mnjsvrznag1fwpkh4h27"; type = "gem"; }; - version = "1.1.0"; + version = "3.3.0"; }; - erubis = { + rubocop = { + dependencies = ["astrolabe" "parser" "powerpack" "rainbow" "ruby-progressbar" "tins"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; + sha256 = "1grqda2fdknm43zyagh8gcmnhjkypyfw98q92hmvprprwghkq2sg"; type = "gem"; }; - version = "2.7.0"; + version = "0.35.1"; }; - equalizer = { + ruby-fogbugz = { + dependencies = ["crack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kjmx3fygx8njxfrwcmn7clfhjhb6bvv3scy2lyyi0wqyi3brra4"; + sha256 = "1jj0gpkycbrivkh2q3429vj6mbgx6axxisg69slj3c4mgvzfgchm"; type = "gem"; }; - version = "0.0.11"; + version = "0.2.1"; }; - encryptor = { + ruby-progressbar = { source = { remotes = ["https://rubygems.org"]; - sha256 = "04wqqda081h7hmhwjjx1yqxprxjk8s5jgv837xqv1bpxiv7f4v1y"; + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; type = "gem"; }; - version = "1.3.0"; + version = "1.7.5"; }; - email_spec = { - dependencies = ["launchy" "mail"]; + ruby-saml = { source = { remotes = ["https://rubygems.org"]; - sha256 = "00p1cc69ncrgg7m45va43pszip8anx5735w1lsb7p5ygkyw8nnpv"; + sha256 = "151jbak16y87dbj3ma2nc03rh37z7lixcwgaqahncq80rgnv45a8"; type = "gem"; }; - version = "1.6.0"; + version = "1.1.1"; }; - email_reply_parser = { + ruby2ruby = { + dependencies = ["ruby_parser" "sexp_processor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0k2p229mv7xn7q627zwmvhrcvba4b9m70pw2jfjm6iimg2vmf22r"; + sha256 = "1kmc0503s9mqnjyypx51wsi6zz9zj550ch43rag23wpj4qd6i6pm"; type = "gem"; }; - version = "0.5.8"; + version = "2.2.0"; }; - dropzonejs-rails = { - dependencies = ["rails"]; + ruby_parser = { + dependencies = ["sexp_processor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vqqxzv6qdqy47m2q28adnmccfvc17p2bmkkaqjvrczrhvkkha64"; + sha256 = "1rip6075b4k5a7s8w2klwc3jaqx31h69k004ac5nhl8y0ja92qvz"; type = "gem"; }; - version = "0.7.2"; + version = "3.7.2"; }; - doorkeeper = { - dependencies = ["railties"]; + rubyntlm = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0wim84wkvx758cfb8q92w3hhvnfbwr990x1mmfv1ss1ivjz8fmm0"; + sha256 = "04l8686hl0829x4acsnbz0licf8n6794p7shz8iyahin1jnqg3d7"; type = "gem"; }; - version = "2.2.2"; + version = "0.5.2"; }; - domain_name = { - dependencies = ["unf"]; + rubypants = { source = { remotes = ["https://rubygems.org"]; - sha256 = "16qvfrmcwlzz073aas55mpw2nhyhjcn96s524w0g1wlml242hjav"; + sha256 = "1vpdkrc4c8qhrxph41wqwswl28q5h5h994gy4c1mlrckqzm3hzph"; type = "gem"; }; - version = "0.5.25"; + version = "0.2.0"; }; - docile = { + rufus-scheduler = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; + sha256 = "04bmvvvri7ni7dvlq3gi1y553f6rp6bw2kmdfp9ny5bh3l7qayrh"; type = "gem"; }; - version = "1.1.5"; + version = "3.1.10"; }; - diffy = { + rugged = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0il0ri511g9rm88qbvncbzgwc6wk6265hmnf7grcczmrs1z49vl0"; + sha256 = "0v0cvdw8cgy1hf5h3cx796zpxhbad8d5cm50nykyhwjc00q80zrr"; type = "gem"; }; - version = "3.0.7"; + version = "0.24.0b13"; }; - diff-lcs = { + safe_yaml = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; type = "gem"; }; - version = "1.2.5"; + version = "1.0.4"; }; - devise-two-factor = { - dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; + sanitize = { + dependencies = ["nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1v2wva971ds48af47rj4ywavlmz7qzbmf1jpf1l3xn3mscz52hln"; + sha256 = "0xsv6xqrlz91rd8wifjknadbl3z5h6qphmxy0hjb189qbdghggn3"; type = "gem"; }; - version = "2.0.1"; + version = "2.1.0"; }; - devise-async = { - dependencies = ["devise"]; + sass = { source = { remotes = ["https://rubygems.org"]; - sha256 = "11llg7ggzpmg4lb9gh4sx55spvp98sal5r803gjzamps9crfq6mm"; + sha256 = "04rpdcp258arh2wgdk9shbqnzd6cbbbpi3wpi9a0wby8awgpxmyf"; type = "gem"; }; - version = "0.9.0"; + version = "3.4.20"; }; - devise = { - dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "thread_safe" "warden"]; + sass-rails = { + dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "00h0xdl4a8pjpb0gbgy4w6q9j2mpczkmj23195zmjrg2b1gl8f2q"; + sha256 = "1f6357vw944w2ayayqmz8ai9myl6xbnry06sx5b5ms4r9lny8hj8"; type = "gem"; }; - version = "3.5.4"; + version = "5.0.4"; }; - descendants_tracker = { - dependencies = ["thread_safe"]; + sawyer = { + dependencies = ["addressable" "faraday"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "15q8g3fcqyb41qixn6cky0k3p86291y7xsh1jfd851dvrza1vi79"; + sha256 = "0fk43bzwn816qj1ksiicm2i1kmzv5675cmnvk57kmfmi4rfsyjpy"; type = "gem"; }; - version = "0.0.4"; + version = "0.6.0"; }; - default_value_for = { - dependencies = ["activerecord"]; + sdoc = { + dependencies = ["json" "rdoc"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1z4lrba4y1c3y0rxw8321qbwsb3nr6c2igrpksfvz93yhc9m6xm0"; + sha256 = "17l8qk0ld47z4h5avcnylvds8nc6dp25zc64w23z8li2hs341xf2"; type = "gem"; }; - version = "3.0.1"; + version = "0.3.20"; }; - debugger-ruby_core_source = { + seed-fu = { + dependencies = ["activerecord" "activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1lp5dmm8a8dpwymv6r1y6yr24wxsj0gvgb2b8i7qq9rcv414snwd"; + sha256 = "11xja82yxir1kwccrzng29h7w911i9j0xj2y7y949yqnw91v12vw"; type = "gem"; }; - version = "1.3.8"; + version = "2.3.5"; }; - debug_inspector = { + select2-rails = { + dependencies = ["thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "109761g00dbrw5q0dfnbqg8blfm699z4jj70l4zrgf9mzn7ii50m"; + sha256 = "0ni2k74n73y3gv56gs37gkjlh912szjf6k9j483wz41m3xvlz7fj"; type = "gem"; }; - version = "0.0.2"; + version = "3.5.9.3"; }; - database_cleaner = { + sentry-raven = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0n5r7kvsmknk876v3scdphfnvllr9157fa5q7j5fczg8j5qm6kf0"; + sha256 = "0iqnwfmf6rnpgrvl3c8gh2gkix91nhm21j5qf389g4mi2rkc0ky8"; type = "gem"; }; - version = "1.4.1"; + version = "0.15.6"; }; - daemons = { + settingslogic = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0b839hryy9sg7x3knsa1d6vfiyvn0mlsnhsb6an8zsalyrz1zgqg"; + sha256 = "1ria5zcrk1nf0b9yia15mdpzw0dqr6wjpbj8dsdbbps81lfsj9ar"; type = "gem"; }; - version = "1.2.3"; + version = "2.0.9"; }; - d3_rails = { - dependencies = ["railties"]; + sexp_processor = { source = { remotes = ["https://rubygems.org"]; - sha256 = "12vxiiflnnkcxak2wmbajyf5wzmcv9wkl4drsp0am72azl8a6g9x"; + sha256 = "0gxlcpg81wfjf5gpggf8h6l2dbq3ikgavbrr2yfw3m2vqy88yjg2"; type = "gem"; }; - version = "3.5.11"; + version = "4.6.0"; }; - creole = { + sham_rack = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "00rcscz16idp6dx0dk5yi5i0fz593i3r6anbn5bg2q07v3i025wm"; + sha256 = "0zs6hpgg87x5jrykjxgfp2i7m5aja53s5kamdhxam16wki1hid3i"; type = "gem"; }; - version = "0.5.0"; + version = "1.3.6"; }; - crack = { - dependencies = ["safe_yaml"]; + shoulda-matchers = { + dependencies = ["activesupport"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; + sha256 = "0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"; type = "gem"; }; - version = "0.4.3"; + version = "2.8.0"; }; - coveralls = { - dependencies = ["json" "rest-client" "simplecov" "term-ansicolor" "thor" "tins"]; + sidekiq = { + dependencies = ["concurrent-ruby" "connection_pool" "json" "redis"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "03vnvcw1fdmkp3405blcxpsjf89jxd2061474a32fchsmv2das9y"; + sha256 = "1x7jfc2va0x6fcfffdf0wdiyk4krjw8053jzwffa63wkqr5jvg3y"; type = "gem"; }; - version = "0.8.9"; + version = "4.0.1"; }; - connection_pool = { + sidekiq-cron = { + dependencies = ["redis-namespace" "rufus-scheduler" "sidekiq"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1b2bb3k39ni5mzcnqlv9y4yjkbin20s7dkwzp0jw2jf1rmzcgrmy"; + sha256 = "0xnbvh8kjv6954vsiwfcpp7bn8sgpwvnyapnq7b94w8h7kj3ykqy"; type = "gem"; }; - version = "2.2.0"; + version = "0.4.0"; }; - concurrent-ruby = { + simple_oauth = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0qqdgcfkzv90nznrpsvg3cgg5xiqz4c8hnv7va5gm4fp4lf4k85v"; + sha256 = "0bb06p88xsdw4fxll1ikv5i5k58sl6y323ss0wp1hqjm3xw1jgvj"; type = "gem"; }; - version = "1.0.0"; + version = "0.1.9"; }; - colorize = { + simplecov = { + dependencies = ["docile" "json" "simplecov-html"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "16bsjcqb6pg3k94dh1l5g3hhx5g2g4g8rlr76dnc78yyzjjrbayn"; + sha256 = "1q2iq2vgrdvvla5y907gkmqx6ry2qvnvc7a90hlcbwgp1w0sv6z4"; type = "gem"; }; - version = "0.7.7"; + version = "0.10.0"; }; - coffee-script-source = { + simplecov-html = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1k4fg39rrkl3bpgchfj94fbl9s4ysaz16w8dkqncf2vyf79l3qz0"; + sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; type = "gem"; }; - version = "1.10.0"; + version = "0.10.0"; }; - coffee-script = { - dependencies = ["coffee-script-source" "execjs"]; + sinatra = { + dependencies = ["rack" "rack-protection" "tilt"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0rc7scyk7mnpfxqv5yy4y5q1hx3i7q3ahplcp4bq2g5r24g2izl2"; + sha256 = "1hhmwqc81ram7lfwwziv0z70jh92sj1m7h7s9fr0cn2xq8mmn8l7"; type = "gem"; }; - version = "2.4.1"; + version = "1.4.6"; }; - coffee-rails = { - dependencies = ["coffee-script" "railties"]; + six = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0p3zhs44gsy1p90nmghihzfyl7bsk8kv6j3q7rj3bn74wg8w7nqs"; + sha256 = "1bhapiyjh5r5qjpclfw8i65plvy6k2q4azr5xir63xqglr53viw3"; type = "gem"; }; - version = "4.1.0"; + version = "0.2.0"; }; - coercible = { - dependencies = ["descendants_tracker"]; + slack-notifier = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1p5azydlsz0nkxmcq0i1gzmcfq02lgxc4as7wmf47j1c6ljav0ah"; + sha256 = "08z6fv186yw1nrpl6zwp3lwqksin145aa1jv6jf00bnv3sicliiz"; type = "gem"; }; - version = "1.0.0"; + version = "1.2.1"; }; - coderay = { + slim = { + dependencies = ["temple" "tilt"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; + sha256 = "1szs71hh0msm5gj6qbcxw44m3hqnwybx4yh02scwixnwg576058k"; type = "gem"; }; - version = "1.1.0"; + version = "3.0.6"; }; - cliver = { + slop = { source = { remotes = ["https://rubygems.org"]; - sha256 = "096f4rj7virwvqxhkavy0v55rax10r4jqf8cymbvn4n631948xc7"; + sha256 = "00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"; type = "gem"; }; - version = "0.3.2"; + version = "3.6.0"; }; - chunky_png = { + spinach = { + dependencies = ["colorize" "gherkin-ruby" "json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0vf0axgrm95bs3y0x5gdb76xawfh210yxplj7jbwr6z7n88i1axn"; + sha256 = "0phfjs4iw2iqxdaljzwk6qxmi2x86pl3hirmpgw2pgfx76wfx688"; type = "gem"; }; - version = "1.3.5"; + version = "0.8.10"; }; - charlock_holmes = { + spinach-rails = { + dependencies = ["capybara" "railties" "spinach"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0jsl6k27wjmssxbwv9wpf7hgp9r0nvizcf6qpjnr7qs2nia53lf7"; + sha256 = "1nfacfylkncfgi59g2wga6m4nzdcjqb8s50cax4nbx362ap4bl70"; type = "gem"; }; - version = "0.7.3"; + version = "0.2.1"; }; - cause = { + spring = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0digirxqlwdg79mkbn70yc7i9i1qnclm2wjbrc47kqv6236bpj00"; + sha256 = "0xvz2x6nvza5i53p7mddnf11j2wshqmbaphi6ngd6nar8v35y0k1"; type = "gem"; }; - version = "0.1"; + version = "1.3.6"; }; - carrierwave = { - dependencies = ["activemodel" "activesupport" "json"]; + spring-commands-rspec = { + dependencies = ["spring"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1b1av1ancby6brhmypl5k8xwrasd8bd3kqp9ri8kbq7z8nj6k445"; + sha256 = "0b0svpq3md1pjz5drpa5pxwg8nk48wrshq8lckim4x3nli7ya0k2"; type = "gem"; }; - version = "0.9.0"; + version = "1.0.4"; }; - capybara-screenshot = { - dependencies = ["capybara" "launchy"]; + spring-commands-spinach = { + dependencies = ["spring"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "17v1wihr3aqrxhrwswkdpdklj1xsfcaksblh1y8hixvm9bqfyz3y"; + sha256 = "138jardqyj96wz68njdgy55qjbpl2d0g8bxbkz97ndaz3c2bykv9"; type = "gem"; }; - version = "1.0.11"; + version = "1.0.0"; }; - capybara = { - dependencies = ["mime-types" "nokogiri" "rack" "rack-test" "xpath"]; + spring-commands-teaspoon = { + dependencies = ["spring"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "114k4xi4nfbp3jfbxgwa3fksbwsyibx74gbdqpcgg3dxpmzkaa4f"; + sha256 = "1g7n4m2s9d0frh7y1xibzpphqajfnx4fvgfc66nh545dd91w2nqz"; type = "gem"; }; - version = "2.4.4"; + version = "0.0.2"; }; - cal-heatmap-rails = { + sprockets = { + dependencies = ["hike" "multi_json" "rack" "tilt"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0lrmcyj3iixkprqi9fb9vcn97wpp779sl5hxxgx57r3rb7l4d20w"; + sha256 = "15818683yz27w4hgywccf27n91azy9a4nmb5qkklzb08k8jw9gp3"; type = "gem"; }; - version = "3.5.1"; + version = "2.12.4"; }; - byebug = { + sprockets-rails = { + dependencies = ["actionpack" "activesupport" "sprockets"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1yx89b7vh5mbvxyi8n7zl25ia1bqdj71995m4daj6d41rnkmrpnc"; + sha256 = "1vsl6ryxdjpp97nl4ghhk1v6p50zh3sx9qv81bhmlffc234r91wn"; type = "gem"; }; - version = "8.2.1"; + version = "2.3.3"; }; - bundler-audit = { - dependencies = ["thor"]; + state_machines = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0msv3k2277y7al5lbnw7q9lmb5fnrscpkmsb36wpn189pdq0akfv"; + sha256 = "1xg84kdglz0k1pshf2q604zybjpribzcz2b651sc1j27kd86w787"; type = "gem"; }; version = "0.4.0"; }; - bullet = { - dependencies = ["activesupport" "uniform_notifier"]; + state_machines-activemodel = { + dependencies = ["activemodel" "state_machines"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1h3iaflcz5a1xr32bdb8sk4nx06yhh5d8y7w294w49xigfv4hzj3"; + sha256 = "1bshcm53v2vfpapvhws1h0dq1h4f3p6bvpdkjpydb52a3m0w2z0y"; type = "gem"; }; - version = "4.14.10"; + version = "0.3.0"; }; - builder = { + state_machines-activerecord = { + dependencies = ["activerecord" "state_machines-activemodel"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; + sha256 = "10dplkn4cm49xby8s0sn7wxww4hnxi4dgikfsmhp1rbsa24d76vx"; type = "gem"; }; - version = "3.2.2"; + version = "0.3.0"; }; - browser = { + stringex = { source = { remotes = ["https://rubygems.org"]; - sha256 = "01bkb64w2ld2q5r3chc4f6spbjrmginyg8wlzg130zmx2z4jia2h"; + sha256 = "150adm7rfh6r9b5ra6vk75mswf9m3wwyslcf8f235a08m29fxa17"; type = "gem"; }; - version = "1.0.1"; + version = "2.5.2"; }; - brakeman = { - dependencies = ["erubis" "fastercsv" "haml" "highline" "multi_json" "ruby2ruby" "ruby_parser" "safe_yaml" "sass" "slim" "terminal-table"]; + systemu = { source = { remotes = ["https://rubygems.org"]; - sha256 = "15v13yizpvp1rm86raqggmsmm51v6p8fqw3pfgi6xpvx1ba06cfm"; + sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; type = "gem"; }; - version = "3.1.4"; + version = "2.6.5"; }; - bootstrap-sass = { - dependencies = ["autoprefixer-rails" "sass"]; + task_list = { + dependencies = ["html-pipeline"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "12hhw42hk9clwfj6yz5v0c5p35wrn5yjnji7bnzsfs99vi2q00ld"; + sha256 = "1iv1fizb04463c4mp4gxd8v0414fhvmiwvwvjby5b9qq79d8zwab"; type = "gem"; }; - version = "3.3.6"; + version = "1.0.2"; }; - binding_of_caller = { - dependencies = ["debug_inspector"]; + teaspoon = { + dependencies = ["railties"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "15jg6dkaq2nzcd602d7ppqbdxw3aji961942w93crs6qw4n6h9yk"; + sha256 = "0cprz18vgf0jgcggcxf4pwx8jcwbiyj1p0dnck5aavlvaxaic58s"; type = "gem"; }; - version = "0.7.2"; + version = "1.0.2"; }; - better_errors = { - dependencies = ["coderay" "erubis"]; + teaspoon-jasmine = { + dependencies = ["teaspoon"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0v0q8bdkqqlcsfqbk4wvc3qnz8an44mgz720v5f11a4nr413mjgf"; + sha256 = "00wygrv1jm4aj15p1ab9d5fdrj6y83kv26xgp52mx4lp78h2ms9q"; type = "gem"; }; - version = "1.0.1"; + version = "2.2.0"; }; - benchmark-ips = { + temple = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0bh681m54qdsdyvpvflj1wpnj3ybspbpjkr4cnlrl4nk4yikli0j"; + sha256 = "0ysraljv7lkb04z5vdyrkijab7j1jzj1mgz4bj82744dp7d0rhb0"; type = "gem"; }; - version = "2.3.0"; + version = "0.7.6"; }; - bcrypt = { + term-ansicolor = { + dependencies = ["tins"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "15cf7zzlj9b0xcx12jf8fmnpc8g1b0yhxal1yr5p7ny3mrz5pll6"; + sha256 = "0ydbbyjmk5p7fsi55ffnkq79jnfqx65c3nj8d9rpgl6sw85ahyys"; type = "gem"; }; - version = "3.1.10"; + version = "1.3.2"; }; - babosa = { + terminal-table = { source = { remotes = ["https://rubygems.org"]; - sha256 = "05rgxg4pz4bc4xk34w5grv0yp1j94wf571w84lf3xgqcbs42ip2f"; + sha256 = "1s6qyj9ir1agbbi32li9c0c34dcl0klyxqif6mxy0dbvq7kqfp8f"; type = "gem"; }; - version = "1.0.2"; + version = "1.5.2"; }; - axiom-types = { - dependencies = ["descendants_tracker" "ice_nine" "thread_safe"]; + test_after_commit = { + dependencies = ["activerecord"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "10q3k04pll041mkgy0m5fn2b1lazm6ly1drdbcczl5p57lzi3zy1"; + sha256 = "1fzg8qan6f0n0ynr594bld2k0rwwxj99yzhiga2f3pkj9ina1abb"; type = "gem"; }; - version = "0.1.1"; + version = "0.4.2"; }; - awesome_print = { + thin = { + dependencies = ["daemons" "eventmachine" "rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1k85hckprq0s9pakgadf42k1d5s07q23m3y6cs977i6xmwdivyzr"; + sha256 = "1pyc602sa8fqwjyssn9yvf3fqrr14jk7hj9hsjlan1mq4zvim1lf"; type = "gem"; }; - version = "1.2.0"; + version = "1.6.4"; }; - autoprefixer-rails = { - dependencies = ["execjs" "json"]; + thor = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0m1w42ncz0p48r5hbyglayxkzrnplw18r99dc1ia2cb3nizkwllx"; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; type = "gem"; }; - version = "6.2.3"; + version = "0.19.1"; }; - attr_required = { + thread_safe = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0pawa2i7gw9ppj6fq6y288da1ncjpzsmc6kx7z63mjjvypa5q3dc"; + sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; type = "gem"; }; - version = "1.0.0"; + version = "0.3.5"; }; - attr_encrypted = { - dependencies = ["encryptor"]; + tilt = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1hm2844qm37kflqq5v0x2irwasbhcblhp40qk10m3wlkj4m9wp8p"; + sha256 = "00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir"; type = "gem"; }; - version = "1.3.4"; + version = "1.4.1"; }; - astrolabe = { - dependencies = ["parser"]; + timfel-krb5-auth = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0ybbmjxaf529vvhrj4y8d4jpf87f3hgczydzywyg1d04gggjx7l7"; + sha256 = "105vajc0jkqgcx1wbp0ad262sdry4l1irk7jpaawv8vzfjfqqf5b"; type = "gem"; }; - version = "1.3.1"; + version = "0.8.3"; }; - ast = { + tinder = { + dependencies = ["eventmachine" "faraday" "faraday_middleware" "hashie" "json" "mime-types" "multi_json" "twitter-stream"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "102bywfxrv0w3n4s6lg25d7xxshd344sc7ijslqmganj5bany1pk"; + sha256 = "1kwj0wd540wb2ws86d3jdva175dx00w2j8lyrvbb6qli3g27byd7"; type = "gem"; }; - version = "2.1.0"; + version = "1.10.1"; }; - asciidoctor = { + tins = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0q9yhan2mkk1lh15zcfd9g2fn6faix9yrf5skg23dp1y77jv7vm0"; + sha256 = "02qarvy17nbwvslfgqam8y6y7479cwmb1a6di9z18hzka4cf90hz"; type = "gem"; }; - version = "1.5.3"; + version = "1.6.0"; }; - asana = { - dependencies = ["faraday" "faraday_middleware" "faraday_middleware-multi_json" "oauth2"]; + turbolinks = { + dependencies = ["coffee-rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1560p13g57pl4xqkmhwn1vpqhm7mw9fwmmswk38k3i2r7g0b5y9z"; + sha256 = "1ddrx25vvvqxlz4h59lrmjhc2bfwxf4bpicvyhgbpjd48ckj81jn"; type = "gem"; }; - version = "0.4.0"; + version = "2.5.3"; }; - arel = { + twitter-stream = { + dependencies = ["eventmachine" "http_parser.rb" "simple_oauth"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1a270mlajhrmpqbhxcqjqypnvgrq4pgixpv3w9gwp1wrrapnwrzk"; + sha256 = "0is81g3xvnjk64sqiaqlh2ziwfryzwvk1yvaniryg0zhppgsyriq"; type = "gem"; }; - version = "6.0.3"; + version = "0.1.16"; }; - annotate = { - dependencies = ["activerecord" "rake"]; + tzinfo = { + dependencies = ["thread_safe"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1wdw9phsv2dndgid3pd8h0hl4zycwy11jc9iz6prwza0xax0i7hg"; + sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; type = "gem"; }; - version = "2.6.10"; + version = "1.2.2"; }; - allocations = { + uglifier = { + dependencies = ["execjs" "json"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0iynf7gkbnbr5mgl2wgbgvxmjdiawh7ywwbnyjm94bj3pkybzgkc"; + sha256 = "0mzs64z3m1b98rh6ssxpqfz9sc87f6ml6906b0m57vydzfgrh1cz"; type = "gem"; }; - version = "1.0.4"; + version = "2.7.2"; }; - akismet = { + underscore-rails = { source = { remotes = ["https://rubygems.org"]; - sha256 = "0hqpn25iyypkwkrqaibjm5nss5jmlkrddhia7frmz94prvyjr02w"; + sha256 = "0iyspb7s49wpi9cc314gvlkyn45iyfivzxhdw0kql1zrgllhlzfk"; type = "gem"; }; - version = "2.0.0"; + version = "1.8.3"; }; - after_commit_queue = { - dependencies = ["activerecord"]; + unf = { + dependencies = ["unf_ext"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jrhvj4335dsrj0xndbf7a7m2inbwbx1knc0bwgvmkk1w47l43s0"; + sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9"; type = "gem"; }; - version = "1.3.0"; + version = "0.1.4"; }; - addressable = { + unf_ext = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1533axm85gpz267km9gnfarf9c78g2scrysd6b8yw33vmhkz2km6"; + sha256 = "0ly2ms6c3irmbr1575ldyh52bz2v0lzzr2gagf0p526k12ld2n5b"; type = "gem"; }; - version = "2.3.8"; + version = "0.0.7.1"; }; - acts-as-taggable-on = { - dependencies = ["activerecord"]; + unicorn = { + dependencies = ["kgio" "rack" "raindrops"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0bz0z8dlp3fjzah9y9b6rr9mkidsav9l4hdm51fnq1gd05yv3pr7"; + sha256 = "1kpg2vikx2hxdyrl45bqcr89a0w59hfw7yn7xh87bmlczi34xds4"; type = "gem"; }; - version = "3.5.0"; + version = "4.8.3"; }; - activesupport = { - dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"]; + unicorn-worker-killer = { + dependencies = ["get_process_mem" "unicorn"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031"; + sha256 = "0rrdxpwdsapx47axjin8ymxb4f685qlpx8a26bql4ay1559c3gva"; type = "gem"; }; - version = "4.2.5.2"; + version = "0.4.4"; }; - activerecord-session_store = { - dependencies = ["actionpack" "activerecord" "railties"]; + uniform_notifier = { source = { remotes = ["https://rubygems.org"]; - sha256 = "1rp5q0q5i5syfgw7qpiq3a42x13p7myyv1c5hmnczpdlh57axs3p"; + sha256 = "009z60qx01am7klmrca8pcladrynljra3a9smifn9f81r4dc7q63"; type = "gem"; }; - version = "0.1.2"; + version = "1.9.0"; }; - activerecord-nulldb-adapter = { + uuid = { + dependencies = ["macaddr"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ym3paxp5lqr2kr4hkqj6xxqvgl57fv8jqhvgjfxb9lk7k5jlfmp"; + sha256 = "0gr2mxg27l380wpiy66mgv9wq02myj6m4gmp6c4g1vsbzkh0213v"; type = "gem"; }; - version = "0.3.2"; + version = "2.3.8"; }; - activerecord-deprecated_finders = { + version_sorter = { source = { remotes = ["https://rubygems.org"]; - sha256 = "03xplckz7v3nm6inqkwdd44h6gpbpql0v02jc1rz46a38rd6cj6m"; + sha256 = "1lad9c43w2xfzmva57ia6glpmhyivyk1m79jli42canshvan5v6y"; type = "gem"; }; - version = "1.0.4"; + version = "2.0.0"; }; - activerecord = { - dependencies = ["activemodel" "activesupport" "arel"]; + virtus = { + dependencies = ["axiom-types" "coercible" "descendants_tracker" "equalizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2"; + sha256 = "06iphwi3c4f7y9i2rvhvaizfswqbaflilziz4dxqngrdysgkn1fk"; type = "gem"; }; - version = "4.2.5.2"; + version = "1.0.5"; }; - activemodel = { - dependencies = ["activesupport" "builder"]; + warden = { + dependencies = ["rack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962"; + sha256 = "1iyxw1ms3930dh7vcrfyi4ifpdbkfsr8k7fzjryva0r7k3c71gb7"; type = "gem"; }; - version = "4.2.5.2"; + version = "1.2.4"; }; - activejob = { - dependencies = ["activesupport" "globalid"]; + web-console = { + dependencies = ["activemodel" "binding_of_caller" "railties" "sprockets-rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026"; + sha256 = "13rwps8m76j45iqhggm810j78i8bg4nqzgi8k7amxplik2zm5blf"; type = "gem"; }; - version = "4.2.5.2"; + version = "2.2.1"; }; - actionview = { - dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; + webmock = { + dependencies = ["addressable" "crack"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635"; + sha256 = "1p7hqdxk5359xwp59pcx841fhbnqx01ra98rnwhdyz61nrc6piv3"; type = "gem"; }; - version = "4.2.5.2"; + version = "1.21.0"; }; - actionpack = { - dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; + websocket-driver = { + dependencies = ["websocket-extensions"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf"; + sha256 = "1v39w1ig6ps8g55xhz6x1w53apl17ii6kpy0jg9249akgpdvb0k9"; type = "gem"; }; - version = "4.2.5.2"; + version = "0.6.3"; }; - actionmailer = { - dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; + websocket-extensions = { source = { remotes = ["https://rubygems.org"]; - sha256 = "8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5"; + sha256 = "07qnsafl6203a2zclxl20hy4jq11c471cgvd0bj5r9fx1qqw06br"; type = "gem"; }; - version = "4.2.5.2"; + version = "0.1.2"; }; - ace-rails-ap = { + wikicloth = { + dependencies = ["builder" "expression_parser" "rinku"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "082n12rkd9j7d89030nhmi4fx1gqaf13knps6cknsyvwix7fryvv"; + sha256 = "1jp6c2yzyqbap8jdiw8yz6l08sradky1llhyhmrg934l1b5akj3s"; type = "gem"; }; - version = "2.0.1"; + version = "0.8.1"; }; - RedCloth = { + xml-simple = { source = { remotes = ["https://rubygems.org"]; - sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl"; + sha256 = "0xlqplda3fix5pcykzsyzwgnbamb3qrqkgbrhhfz2a2fxhrkvhw8"; type = "gem"; }; - version = "4.2.9"; + version = "1.1.5"; }; - CFPropertyList = { + xpath = { + dependencies = ["nokogiri"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mjb46368z4hiax3fcsgxk14fxrhwnvcmakc2f5sx8nz0wvvkwg2"; + sha256 = "04kcr127l34p7221z13blyl0dvh0bmxwx326j72idayri36a394w"; type = "gem"; }; - version = "2.3.2"; + version = "2.0.0"; }; -} +} \ No newline at end of file -- cgit 1.4.1 From c5451206ab3d2b2e4442b9e59e6b1fd978a9d57f Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Wed, 4 May 2016 02:12:39 +0100 Subject: Init CKAN: The Comprehensive Kerbal Archive Network (#15202) * ckan: Init at 1.16.1 --- pkgs/games/ckan/default.nix | 42 +++++++++++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 44 insertions(+) create mode 100644 pkgs/games/ckan/default.nix diff --git a/pkgs/games/ckan/default.nix b/pkgs/games/ckan/default.nix new file mode 100644 index 0000000000000..1465a65a2bd97 --- /dev/null +++ b/pkgs/games/ckan/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchFromGitHub, makeWrapper, perl, mono, gtk }: + +stdenv.mkDerivation rec { + name = "ckan-${version}"; + version = "1.16.1"; + + src = fetchFromGitHub { + owner = "KSP-CKAN"; + repo = "CKAN"; + rev = "v${version}"; + sha256 = "0lfvl8w09lakz35szp5grfvhq8xx486f5igvj1m6azsql4n929lg"; + }; + + buildInputs = [ makeWrapper perl mono gtk ]; + + postPatch = '' + substituteInPlace bin/build \ + --replace /usr/bin/perl ${perl}/bin/perl + ''; + + # Tests don't currently work, as they try to write into /var/empty. + doCheck = false; + checkTarget = "test"; + + installPhase = '' + mkdir -p $out/bin + for exe in *.exe; do + install -m 0644 $exe $out/bin + makeWrapper ${mono}/bin/mono $out/bin/$(basename $exe .exe) \ + --add-flags $out/bin/$exe \ + --set LD_LIBRARY_PATH ${gtk.out}/lib + done + ''; + + meta = { + description = "Mod manager for Kerbal Space Program"; + homepage = https://github.com/KSP-CKAN/CKAN; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.Baughn ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5f901adb856ce..685f1441b1d7d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14805,6 +14805,8 @@ in chocolateDoom = callPackage ../games/chocolate-doom { }; + ckan = callPackage ../games/ckan { }; + cockatrice = qt5.callPackage ../games/cockatrice { }; confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; -- cgit 1.4.1 From 3e401a8d01ddb21fe43f77124bfbefb7c82299ef Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Tue, 3 May 2016 22:32:57 -0300 Subject: imlib2: 1.4.8 -> 1.4.9 --- pkgs/development/libraries/imlib2/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/imlib2/default.nix b/pkgs/development/libraries/imlib2/default.nix index 8d79fcc50a8ec..85e9979ebb078 100644 --- a/pkgs/development/libraries/imlib2/default.nix +++ b/pkgs/development/libraries/imlib2/default.nix @@ -1,17 +1,19 @@ { stdenv, fetchurl, xlibsWrapper, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig }: stdenv.mkDerivation rec { - name = "imlib2-1.4.8"; + name = "imlib2-1.4.9"; src = fetchurl { url = "mirror://sourceforge/enlightenment/${name}.tar.bz2"; - sha256 = "0xxhgkd1axlcmf3kp1d7naiygparpg8l3sg3d263rhl2z0gm7aw9"; + sha256 = "08809xxk2555yj6glixzw9a0x3x8cx55imd89kj3r0h152bn8a3x"; }; buildInputs = [ xlibsWrapper libjpeg libtiff giflib libpng bzip2 ]; nativeBuildInputs = [ pkgconfig ]; + enableParallelBuilding = true; + preConfigure = '' substituteInPlace imlib2-config.in \ --replace "@my_libs@" "" -- cgit 1.4.1 From da767356f275785950c9847428b60be2d6753943 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 4 May 2016 02:20:49 +0200 Subject: grsecurity: support disabling TCP simultaneous connect Defaults to OFF because disabling TCP simultaneous connect breaks some legitimate use cases, notably WebRTC [1], but it's nice to provide the option for deployments where those features are unneeded anyway. This is an alternative to https://github.com/NixOS/nixpkgs/pull/4937 [1]: http://article.gmane.org/gmane.linux.documentation/9425 --- nixos/modules/security/grsecurity.nix | 17 +++++++++++++++++ pkgs/build-support/grsecurity/default.nix | 2 ++ 2 files changed, 19 insertions(+) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 11668162808fb..12401f044a7f8 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -194,6 +194,23 @@ in ''; }; + disableSimultConnect = mkOption { + type = types.bool; + default = false; + description = '' + Disable TCP simultaneous connect. The TCP simultaneous connect + feature allows two clients to connect without either of them + entering the listening state. This feature of the TCP specification + is claimed to enable an attacker to deny the target access to a given + server by guessing the source port the target would use to make the + connection. + + This option is OFF by default because TCP simultaneous connect has + some legitimate uses. Enable this option if you know what this TCP + feature is for and know that you do not need it. + ''; + }; + verboseVersion = mkOption { type = types.bool; default = false; diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 0ba270366671b..d8042d6527320 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -14,6 +14,7 @@ let restrictProcWithGroup = true; unrestrictProcGid = 121; # Ugh, an awful hack. See grsecurity NixOS gid disableRBAC = false; + disableSimultConnect = false; verboseVersion = false; kernelExtraConfig = ""; } // grsecOptions.config; @@ -107,6 +108,7 @@ let GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod} GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB} GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC} + GRKERNSEC_NO_SIMULT_CONNECT ${boolToKernOpt cfg.config.disableSimultConnect} ${cfg.config.kernelExtraConfig} ''; -- cgit 1.4.1 From 90f5be3133ed32aa1564d9bfc7fb89e95beccf79 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 4 May 2016 09:29:45 +0900 Subject: firefox-bin: 45.0.2 -> 46.0.1 --- .../networking/browsers/firefox-bin/default.nix | 18 +- .../browsers/firefox-bin/generate_sources.rb | 68 ++-- .../networking/browsers/firefox-bin/sources.nix | 366 ++++++++++----------- pkgs/top-level/all-packages.nix | 1 + 4 files changed, 223 insertions(+), 230 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index 152089286b485..bc3a0463fa8bf 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, config +{ stdenv, fetchurl, config, makeWrapper , alsaLib , atk , cairo @@ -13,7 +13,8 @@ , glibc , gst_plugins_base , gstreamer -, gtk +, gtk2 +, gtk3 , libX11 , libXScrnSaver , libXcomposite @@ -26,6 +27,7 @@ , libcanberra , libgnome , libgnomeui +, defaultIconTheme , mesa , nspr , nss @@ -64,7 +66,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://download-installer.cdn.mozilla.net/pub/firefox/releases/${version}/${source.arch}/${source.locale}/firefox-${version}.tar.bz2"; - inherit (source) sha256; + inherit (source) sha512; }; phases = "unpackPhase installPhase"; @@ -85,7 +87,8 @@ stdenv.mkDerivation { glibc gst_plugins_base gstreamer - gtk + gtk2 + gtk3 libX11 libXScrnSaver libXcomposite @@ -109,6 +112,8 @@ stdenv.mkDerivation { stdenv.cc.cc ]; + buildInputs = [ makeWrapper gtk3 defaultIconTheme ]; + # "strip" after "patchelf" may break binaries. # See: https://github.com/NixOS/patchelf/issues/10 dontStrip = 1; @@ -144,6 +149,11 @@ stdenv.mkDerivation { GenericName=Web Browser Categories=Application;Network; EOF + + wrapProgram "$out/bin/firefox" \ + --argv0 "$out/bin/.firefox-wrapped" \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:" \ + --suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb index c4e140412881c..03acf17e426e5 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb +++ b/pkgs/applications/networking/browsers/firefox-bin/generate_sources.rb @@ -1,63 +1,45 @@ -# TODO share code with thunderbird-bin/generate_nix.rb +# TODO share code with thunderbird-bin/generate_sources.rb -version = if ARGV.empty? - "latest" - else - ARGV[0] - end +require "open-uri" -base_path = "archive.mozilla.org/pub/firefox/releases" - -arches = ["linux-i686", "linux-x86_64"] - -arches.each do |arch| - system("wget", "--recursive", "--continue", "--no-parent", "--reject-regex", ".*\\?.*", "--reject", "xpi", "http://#{base_path}/#{version}/#{arch}/") -end - -locales = Dir.glob("#{base_path}/#{version}/#{arches[0]}/*").map do |path| - File.basename(path) -end.sort - -locales.delete("index.html") -locales.delete("xpi") - -# real version number, e.g. "30.0" instead of "latest". -real_version = Dir.glob("#{base_path}/#{version}/#{arches[0]}/#{locales[0]}/firefox-*")[0].match(/firefox-([0-9.]*)/)[1][0..-2] - -locale_arch_path_tuples = locales.flat_map do |locale| - arches.map do |arch| - path = Dir.glob("#{base_path}/#{version}/#{arch}/#{locale}/firefox-*")[0] - - [locale, arch, path] +version = + if ARGV.empty? + $stderr.puts("Usage: ruby generate_sources.rb > sources.nix") + exit(-1) + else + ARGV[0] end -end -paths = locale_arch_path_tuples.map do |tuple| tuple[2] end +base_path = "http://archive.mozilla.org/pub/firefox/releases" -hashes = IO.popen(["sha256sum", "--binary", *paths]) do |input| - input.each_line.map do |line| - $stderr.puts(line) +Source = Struct.new(:hash, :arch, :locale, :filename) - line.match(/^[0-9a-f]*/)[0] - end +sources = open("#{base_path}/#{version}/SHA512SUMS") do |input| + input.readlines +end.select do |line| + /\/firefox-.*\.tar\.bz2$/ === line && !(/source/ === line) +end.map do |line| + hash, name = line.chomp.split(/ +/) + Source.new(hash, *(name.split("/"))) +end.sort_by do |source| + [source.locale, source.arch] end +arches = ["linux-i686", "linux-x86_64"] puts(<<"EOH") # This file is generated from generate_sources.rb. DO NOT EDIT. -# Execute the following command in a temporary directory to update the file. +# Execute the following command to update the file. # -# ruby generate_sources.rb > sources.nix +# ruby generate_sources.rb 46.0.1 > sources.nix { - version = "#{real_version}"; + version = "#{version}"; sources = [ EOH -locale_arch_path_tuples.zip(hashes) do |tuple, hash| - locale, arch, path = tuple - - puts(%Q| { locale = "#{locale}"; arch = "#{arch}"; sha256 = "#{hash}"; }|) +sources.each do |source| + puts(%Q| { locale = "#{source.locale}"; arch = "#{source.arch}"; sha512 = "#{source.hash}"; }|) end puts(<<'EOF') diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 883b2abf44ac8..1c588af4992f1 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -1,190 +1,190 @@ -# This file is generated from generate_sources.rb. DO NOT EDIT. +# This file is generated from generate_nix.rb. DO NOT EDIT. # Execute the following command in a temporary directory to update the file. # -# ruby generate_sources.rb > sources.nix +# ruby generate_source.rb 46.0.1 > sources.nix { - version = "45.0.2"; + version = "46.0.1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "3e925e9594f84e6bce3f24fa0a1207ec584818df4815ae04a6c882644e2f7cc6"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "c960352a5288f09752ff76440278e76700a1921109f0976b4d922ceeedec8e9c"; } - { locale = "af"; arch = "linux-i686"; sha256 = "3067a999cc678fe225c11288ed5659a251f237e098903b2cf6f23bdbceb70a9f"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "f329f7f3e15cd90263d70269c946f83bca01384618a59d590ca371930e7b1939"; } - { locale = "an"; arch = "linux-i686"; sha256 = "564ba48104a2db7709e4b9b25cf8d2853ef8a2b919a14030d7cc59751ac8ab8c"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "c2628a079e4c601d54c869d3b13ec1a772353885b29a63559aa544d5f48d4873"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "3097a13c59a324f3f9b7504b4941b1846cfbd5593c91597a2475fe87efbb61f7"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "b5778932fb122de9f7070393b4ae98e190e648857c94096a495e021a3c956a04"; } - { locale = "as"; arch = "linux-i686"; sha256 = "b6751bdaf612b8a975122812db0e7641eb5932e6c13879d7b48f2b7f5e8a2c6a"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "6501b0e3c4c55eef08e94dcd6f5fab70d01f88e57630f5a999279286fc9b1058"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "40b5f29d2a818e60d5ed1ef2f37ed5a65bf52b9138b2e4fd1c110b404fbf3910"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "6f9e6266d790784d57cab715d8d6fa5e648ec20287c8d6ad746972e284f5558b"; } - { locale = "az"; arch = "linux-i686"; sha256 = "005ca6c0184a9c5a2eee8d49b00782872abbe202c70654d856fd519ce62ea47a"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "32d5179de71be41b855d0454004e43d336289a6fe4967e869d0b9fb42fe2fe71"; } - { locale = "be"; arch = "linux-i686"; sha256 = "0fadc3acdd104cc171a18c74e11e853a9a322017f3f63b79712dc6628246630c"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "3fe751e0c702fc8a03f63cba1d1f2e0897b2f729c1b607f68f9934926a3343d8"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "80c49634c1b0acb2ee533ddd6581845270f05a3406cd7b41bf5962182166c000"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "12e74f5a3b8500f18126e305d49cf26290fb145d62d888bd00fd44b412dec105"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "22511d1c27f3876bbe7c4e791accdfa205e05cd3fc4143070f8e1e75521fa12e"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "239e59d26a842efd2ec61dcca73f7b6aadca6d4bb969e7447bf8ef2ed880a77c"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "72f72e6528c5d9e373e21065eba623cbbfc6c82e73db0df3581a1ffebe664cbd"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "580564e4a1e249a7cb6c83736343af43f903df82a97f8d2e19bd749e01867339"; } - { locale = "br"; arch = "linux-i686"; sha256 = "1dbc1d60e99812077b1b43a6f294e9c834db5b08ad67976290a5ea6f07d44c05"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "2c6524b05b9ab8da113066de6d6380cad29b681921c03486618dd2b6d10ca1ae"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "11b706f2621a8026e10de074f0cbcb6bab4a7b0a17d144640c8296ea35e92c95"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "e4ff831c617918c52b3b2a9e69a1f35f8b3e825f407cf6729d7e2b479860de29"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "1c2aefd0ab56bcfd619705aba70018873581c7482307c32842ffdb68ce441f10"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "47ab6aa2c474b9b04f246822c471548b2452559d04e4ec8cc099f3686729d285"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "f2c4028d562148ad39390853d388ed0617419e97bda55a0c6c47bf0e94145446"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "28d6eb534884b2c05afe87981b894c790fe57508b3e866cdcf341e1f9c51080c"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "684b11673d16778961115b990734888975267c3c253a8081519e53ae95df5798"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "d17294841995094d6395a4e65d50e5382e845d59e5949c952e96f4fe739d9bc4"; } - { locale = "da"; arch = "linux-i686"; sha256 = "4f2d29d52968c1b7a96af37beeee7150504bd3c32c4178a814ab0c4f86fe9644"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "65d01baab9e71a5a3d92124dbcc44c158277b273e8b6bcb302f853f61babde71"; } - { locale = "de"; arch = "linux-i686"; sha256 = "55af9ad39962559a48720c65f66d3bbab037ff30e777439428e2467a4559f039"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "835ea2e3757beb74c939296aa3d00092ff3f9d6d8805b64a267bcde28de0cb94"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "5b419a8f5e03257718237249be9c76eee759e46147d154bf994774139bb56be8"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "90d5dae350d65c6db8b156764ccdffe0f9951be29339a68db22018840c2247c1"; } - { locale = "el"; arch = "linux-i686"; sha256 = "77cc23059dc3b2956f3caf5802091ba48c4a42f5d86066f06282f82cb00845b7"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "daa2180f15708ec07902b639fe30cdb9c2c230622a92011e1065d24b706bbc62"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "15b084bfeac2e49a0d40b37a890321500eede1bed2edaa95cf3bba8981bb6a08"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "c5d17b6386dcae9cf88b2d80b38e921646936f253616104bec5a2fbb58d25fbd"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "6ef1fb2322cf448afe2c09b008eb2bab0c2efa94378b2ae9889bf83ac6f779af"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "4068eb3eb07e9798ddc1449186a1c60196bb6051ca7217f6bcee5da21e41c6c5"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "4a61661b05ddd62f9e28ada0b39fe1a81cb5d737fa50d636561f79ec324e689c"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "ddc551e2d8d0c50ba268ba1e8fd9ecbe52e05b0de0d1bb586045206a9e745a7a"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "236a9b6b632d1f30d63989f03783288eb8c1f144cae80b4549c0eded5dd95f1f"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "0f3a07a470e146891326ac36aa38b58018a4aa9ae668c8bbedc3b95c28d3fcb4"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "6feb23d97fa5a2356365d5779c18af5fc2a00b0e91c92a5127f4d576f916f7a1"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "5e2afba4834e6c44e8717090b832c76dfb5303617bc466be5299d579e9b298dc"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "3734590f319e8e281938dae65ad2e6fd7496c0c480123a6a819b3bb5d1489c69"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "e0fcfccfe80dcc71a7d527539e42acfc6d6786a9e8491b426aab7fc3789c8cb6"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "126cf64e6f7754fe0ff8a97499ccd528896ad3bbd89296271609092ade68524a"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "c8dbda78bffec09d401b39b76d9684a03f47102955d04604cfc2e7ddb0315f2f"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "8f116ccad3093783476a60ea605e324b0046b84b59c9f858dc080d2e275cac51"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "e6a9c775983e310d3ed8a98530860ce19e7a78df16dffb95e4735007fcf82a57"; } - { locale = "et"; arch = "linux-i686"; sha256 = "1b2b205731ce638823bd448b3d90e919d13e24b9b92e25eebef3766bac3e8330"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "97ecc57e21229d46d9d152d7821e860f3f2a53c10eda7caeb865af1919c6a0fe"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "5f0e7875993532ad234fe7af2a191619e308be726ed6ae8be01afc79f8c5f3c8"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "bf2a52f3fce8ff4142cb1346cb5ce0f8b51959755698377db0807bc1e87e01eb"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "12d593a12a0fcfcd720a6a5324b349c139f6e6759b111dab869e851241736e28"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "29cb4531e485af7dae2a45a1b9a0620292eaa2764b4cd24504bce0e54c8b71ae"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "d67f9937780713ed4c130713239254a1e0d3918f2d2f528b74651b413e281cbf"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "140b199b0ce0a32fcf363946c942d733b587d9569c75f2dbab19161385f12d9b"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "586346c2bc47b1b2693d03e4f2fe3b36de00966244120272426c597b94044595"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "160d0036392cb38de1a7e15ba9d0d1acf0538ff1b575ab1d1df11d187c5ac74d"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "f33b267d223d704beef813d0c7c8ab534152373435ef04db3b039ad56b02c556"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "c141b154d5c56eefd94bfe7e391d0fa4027cee6685820e8be304c801d7064c65"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "2fff2f173cf6008b7bc17cad2ce16a43901f8484f3eb2700368acd64f98f075b"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "88227c796a82290c27b97cb27d8f606f1982115eb5724fe4a6169056ac000816"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "f9deacaf81e46267fd1d7297149e9f7e330bc2a58981cd65857c6add5eef6402"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "c376d517de3aad4152c0d5dceb8ef1a2deef1213e568404f06163f9d4adbe777"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "f4f11f104fe964196e1588b1cddf5a43c5a8591d41ec7baf365264562240d5be"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "40993cbe7c6a42c467868e8cd60eb67aa8d0b7357617f5babb415cc3ffd608e9"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "23c4a4a47fe7150c70f8489921b756ada22e45140e01d6817f9145de32b4d35a"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "d3fa81ba627c6e75fea42715d8dc4c5fdbed841429a0493081f915623ad603c4"; } - { locale = "gn"; arch = "linux-i686"; sha256 = "ebbf6f05f6b61a6ecb7f5c91ca4a6b87824edced41777fe35293b5ba6836a6cf"; } - { locale = "gn"; arch = "linux-x86_64"; sha256 = "d9917c8dc1d236e569d040db1512872ce145af934ee3fad7a7e2d5a9a845a856"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "598f3feaa412fa85619fd60ca1a48b2a691867d8aab92b39d98d12a3ebee2253"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "f238f84dcc0f41f99073aa4c7bff1fd2dc5f896fb1b9cae00d9d21d199383879"; } - { locale = "he"; arch = "linux-i686"; sha256 = "22aacab2263a799f5503e6d73d76c6c7e8c3f2d39d9a8945d7e062e4078f4eea"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "6288418353ab0d51ba8b7a02a302e68dc3b26e5565cb14e50316e5300cb2f696"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "2ee18b7653f9edf926ff7927d24c04e9aba503174b4fa773a136fd3e29a256db"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "3f18f821cbc4781a9e6d84e54e0a70e2cdd18bcb61342922b1402a3eabb75839"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "c8633fb837adf08b257d19b88e9e5d35c2b24a658da7088a3902b4b9b833e7dd"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "714fcde1e42db06a9083946bb929a182891aadfd249bf5b63aa7f6ca744bcf0b"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "7f86d45ceb3f551b5b371047bbcccf9a75fe2f99df632b42d838419ee0c6d757"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "add010dbfe8a842c16a8dceb019675e04acb7b8de6d952d4b4faa2a368d37f1d"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "cc994b9cfb60517062ce3570839b5e76def0a385b4e8793156d6a4719dd707b3"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "a36d229286d5422dd15d5e0f33e7fb99f6ddff3db4efabc3be244fa26c7bd24d"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "508a5d85df7508c453a991e4a9679b31270da70983607cd9d127a8e432728a3c"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "e21375aa7d5351a841ba05c8b0d921af1f334d37f714ed3c4303e90b5d4e34aa"; } - { locale = "id"; arch = "linux-i686"; sha256 = "58d7e3a898f5ae05bc7b0e99e83d8a39a7f5f935a086081af4a9d7ea98b927a3"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "c4b803b519780a0fd5a43fd23a3aef81d4197e860ad8e2908c5ddf2b76f538c3"; } - { locale = "is"; arch = "linux-i686"; sha256 = "a9fd41eb35ed7430915d9b09807555af1d8d81f5520deb4aae58e38edf3ca11a"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "74c6a4183f32043fcb6a3b52c71e8a23b36fc1381caff0dae8366cd80af391dc"; } - { locale = "it"; arch = "linux-i686"; sha256 = "b6d615f519b7664acb335a305d99bd6c6eb7db98eb29c7957b073fbeb468d63a"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "f65370cd57b1a885169447cc0b879dde715c58309db49f6c268db5113952a05f"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "1b3766bd19c8841922cbe1e3a8144d9efe5ab4a3c9b2fe216811caff54607704"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "68e14f495852e023534bce66626287621a7155464fd56bbe41b38b5bc7305341"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "4a72592497d392d4f749733eeaa7964a95fcc3de007127ec198ac86f6a266382"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "9d6333875c11425a467a32ebf649b7577462920592155ed54ec6130ce76073a0"; } - { locale = "km"; arch = "linux-i686"; sha256 = "e380caedd69287569274115aa4cee7b8d2187050d9f65a10ae36c9d48fd1d007"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "95794fa36975d732987012d406770710985c270c8f4e4c99407711d16279d941"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "b0cd3f0c6da99b3e86ec4b08b962abb0d823329460e87761733db5d7987f1e5d"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "47399283f7b395c5079b592c83a93487a17a2cab0e68d35c54aa6e5e647d2c66"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "5f9b1c691d9c9a99dd280e3fff8df813aeeefe42ce5273ddf2848352bfde44f6"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "360c82f93b7f529173f9259a4f475595d0ec4dc4b63b6ac46785bccd549e3dbd"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "29f2d93c1f6695c22d4e766ee049bbe4f6fb034e22c12be407062db3deb0805c"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "c47c6e13b44b8560487f39c6f668fc03ea42bf848fcb9926cf8e0e0014218fc3"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "5915cf516690de51021eeccc66cce8142fee7882efd7add7a0bfaa5b04d65dbf"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "04673232b52aae6b34b87b6a2638ad653a4e81430d21998919a56dbde10febd7"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "6648a4a4b8be23ed6fb64efc0bb3e49c1807b5408d2df19d45a3b098b9bb605d"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "769020e490b9b74608cbbb319254694f7a32c62b6397ff8c563fa27a33cbe16b"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "5646fac52682c1053e7b58fa0b13fcf74c8b79e344ffa3a9614fa2509ef2b38d"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "eb5db15e6584a5272d9c496d29ce4f500811ed4b49277b93ae432498aef80d0f"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "8430792262871155bf07b652c5f8ae5408b0bb16fd9e6548010e86b2a1d604d0"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "273812699d47c99f20d18fdcf547cd9c5386a4d8049dcb93e34c0303a9aae7a5"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "bc3b9905214fde7623aa5567f6a6792b2c5cb32fde1172ad60b108a42a372c24"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "0e21ef50fd3ecb301d0a62baf3e084723c0cc05c3a9569ce08ccf2698f40a526"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "fb83926aa70735befc1c8c79c950a9dbb01344dfceff82aefa7640e79f659139"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "ae6622f7cb9261985d8cc0bf06af9a51d7d8b391386aded9bf07576be60c5f12"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "16b35b29882238095475719a4f8cecd5e49a8e50bfe5c2b943c604274cfb02ae"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "04e390cdeabc686eee093ae2280628375b706c2b09b9aa29e788bc1663b21ad0"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "b3b931e5a38fc71aee2dc2290adb600b0d8e56923c30c748bacbbf527e2e8960"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "4d3c6f639e8c6579c525c6e8c5bd036b3c6abe0e2d14ee0596ac207b3f291f84"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "40cc8d419bc536e2826766dbd9b3e58bb98730ed38926387bcadcc5b30c8b742"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "4595b76ab812dd9ed16405d0863225c0d6f40dd70a96baee2632a5f8e4d2aab5"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "8cad1d60633dfb059c4e29b3a226397822ed10938909dd783b9b8c7bac0e8866"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "d0ac3c7ff26c4747222f2d7a1d5b4b69a861dee261ad338ed88ab8b35cf44ffc"; } - { locale = "or"; arch = "linux-i686"; sha256 = "b05473429fb2b844d96ee88108891e5cdc13c56526017ff6db1909ff60dbe1b5"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "406816e487831cd9a928fd9c140290f53d4a9575024adf71e1565d24e573abdc"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "beb60cd44b31c3c1ebfae25efb17d78d001f0009bb5a8304e319791ae535daa0"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "1abab6f91bd2ff22cd6d9075bcb83ddf6a190291997e5d379eff53fc10fd8c5e"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "65ceeb5cfeaa7d2c246ba3d152ea1fb892a7d50eafd46da2f41d7ec0a4efa759"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "d3565007522b0e3a4de15b913c8f1c9421d1d9614fa4f2d6657a4af730f26c87"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "7a0593b15eac64c1261e413f4a22ca2cbb5f489530ae72a637de9bc0de99f2be"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "243c12ea35617336d307d8040d1bee1a1827f3c8815e78185e5d5f8c2b58a5d6"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "ed06f6d30204728089609114c5d08a8b2346ca024d6e5743179d0f2f0da753bf"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "65cf06f13ce3930b4c6b645e0fa442003d41a3ff99d4ff6ad06039c806bf9815"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "5b230c43a6b56c4052e054d117c2c80450b36d52b166ac3a9c9e3d13b336e44b"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "341495282263ce7293350c3623d25a6fc7952429bbc36316687be402831c4376"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "12940db350559cc1ef5dd148f2fd34cb4f445fbd1928d0d8dac6e57b0186e08e"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "a53c18fcf239dce6a49a44bbb42a210b6161f5d21e64e9e33096e36b7a187bf2"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "823ecb8bb5b772e896b51bf23ac1fa271b02c1abba9fb4c679c687586047db0b"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "fd4e34dd08c5f712c68826710496ac4eab262a4356e06a02718b27dd8c65d35b"; } - { locale = "si"; arch = "linux-i686"; sha256 = "6cc4f9828e366d59a86922292ca8878ef4bb6cee9ee5316b8733d0704dc6f390"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "ed3c28af72df9960b08071d181b1d097d0326a0cd6eaae673866083f87db18f5"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "cfa4b71bb7acdaa689a28f8aa58f7f9375c7d7e4301cce0aea0eccc60d897d2f"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "736ff619f9d9848d202fe9eaa56b6a29e37e47589282adf7d97f8d7103edecfe"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "c8af219be7f7cc7f878425b446b1c02838f651e64a0fcbfae4ec818326927097"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "d3309efc0b469e9d24e7e01216b52b31ad854653f3904c76fd136d615d75609b"; } - { locale = "son"; arch = "linux-i686"; sha256 = "fdc1e500f8499b648cf0fd3d99601cfcd0f7d89ae09d800520793751a6b32fee"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "e1f7038aa136492e3d296b9ff50a3f815f4b587944783ea0ea607717788cb48b"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "c6881862ff53402d427d998c59a741c4abd9b2713c1fbbc5315b140d02445507"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "2a83117de89e2b9036c0f7fde6617d9f55fef4955432cd566692e7a2829b1128"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "f214aa32eef11535a73449d7f2626c90b1ce78e469d96c8cc6cd53979582197b"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "9931d18c18a785569aade6fd233d3c34910ece758f3355b694b553ce6c5dae7a"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "cd5695110c90744a1b750d34c7294f1109b5c7829025eb28101b6ead5bbbcb3d"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "f52fe8f60420171385638a9de46b2b11c03b13239a17ef9fb4f7305774bab664"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "8910a680bc6a6e58433686a020916b072e0d5d95e896cb7fa5a212c00ee20b93"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "ae727422e4b7cb2de2b098f6b4adedb2dc788b57eda7ec2ee7ac2d60b645ee64"; } - { locale = "te"; arch = "linux-i686"; sha256 = "0088dcb813864a4e231afd10d4aefca656131a3589b316721e2d87cb29a78dbf"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "6ef6aa557e691324072d201ad7876dd4d2417dfaaab08d3bfa4620c4626d1380"; } - { locale = "th"; arch = "linux-i686"; sha256 = "da72450d756950635c0b2d95285b5d998aeddd60b43d9ca98ac4b1b707289a96"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "89ac8220a7be503ecae8dd5a241df4654b93adfac6f431f08b83bb5f7f63de7f"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "64b3e853efe96d75282e0a9ca78db876c3f03b609be0acb551d1d6a7b50e116b"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "fe01dcbfe855e661c79ec63c80098d18c1a051c85fc3fb27ac3df8b9c6d1df92"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "1052bb8de8acd200dfed598f5afc1c87a55772b89b2f2ec59b710af1d1bfea90"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "986d01b61e36188f1293ee7ab1198f2583605469174e2dd9ead8eec241480cec"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "b114d4696cf20320ec71c7ff92ac2d6477784e4f0c9f15a54701473a469e4667"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "19fdc20d1b6a5b556856ad4d43d05cd7ae4bbd0207d326c9f2b0a4a0e3f9425b"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "ec48f6eb7b3fba76d07a4ff4192fe28b4faeaf7dfa2317453f1266dd4cb5e66f"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "89a9c826522dece360abc207260b6a71955d1c86f8f0b783e3013d4c7d5edfdb"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "4671201bd924bfb4e290bdd5247b5d972b2dff986db0dd21b26ee0d30f94566f"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "f381cc509369405e7a06c78c07de3ee01f8b0cf66d3300cfb10f27cab14d34b0"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "abaac014c04bd29dcb5617c489d4b047522f6ede9139781b04c0a73ff20a19a4"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "5da12cc28e6bad8739a0050410efb1ca22d46a42c33fed312acca29e89de007b"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "7279f9ba36dfa988ffade1f54e4f2dcced30be5fab48476d5b6d20d989204274"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "e943d7736ec12d269512363d20d5b2a2e8c740c81a764f44f308d497fe95f0ea"; } + { locale = "ach"; arch = "linux-i686"; sha512 = "f6d47d90c084b78085b7fd9553217a982e391c146eed82323dd6b5e75bfa12ec48acf068b7e85fc74fc3d18bdf37ddba385b0b53c74f91a2e11a45d000a6a515"; } + { locale = "ach"; arch = "linux-x86_64"; sha512 = "7b561ee5a1e7e1d52a6be6775f5c3e9f2e0a5bf13910241d8dad228e0f8d5e5c452efd9beddc3cd9153766750134503ee3246dd1fa0b692c0ce9549b6bc3b32f"; } + { locale = "af"; arch = "linux-i686"; sha512 = "cfcb27c3b2a0ce16faf5911bfdd7f0512144580765d5a086298c73476005e629ab414d6c85a862bbb5bbe1677e5efdbe88f9a2e0f41055d3f0b83717efe550bc"; } + { locale = "af"; arch = "linux-x86_64"; sha512 = "8d3f25168f7af269dd863d64576d0b4926adba71f6e2d3aee302e81b864eb85ccb4792b3e7e38cb12e2f949a0575d50002330af8aea8a21bee28a3b50f54a865"; } + { locale = "an"; arch = "linux-i686"; sha512 = "574c6a6985635c04f781233fe76ff53cf1608666e1fdf5958a95afbe85dea696265005b7f6ef5633b3124a25c673ec1b83de1fe9aff17e3d88cc9a1f6177aa2a"; } + { locale = "an"; arch = "linux-x86_64"; sha512 = "f057e6f20ebd20b5f6caafcf9117fb80af2c671f8fe5aa5814b0839e379e79f90b03228c0cca3ce6412ce3391b5a15c6cb464c8598c5bd6efbad11795eb247fc"; } + { locale = "ar"; arch = "linux-i686"; sha512 = "3ed1904d3470265cf0af654952395795b44b8b33d8e6e17ae8d4a7e48c381c8ec1b17e297e491ddc3434fe4a5bc5403ba23e328a13ed37ff119fbbd98b2646df"; } + { locale = "ar"; arch = "linux-x86_64"; sha512 = "d8a2ef1b106241a1acf71a1e2e7fd6c2bbecb14ce137ca35cf206616e08900c20f4ede255913571a2cf04467e62758f580d72701be2ec4d2a8bced4a346a2a3b"; } + { locale = "as"; arch = "linux-i686"; sha512 = "b82397fd21af47630b284e7897119660b5d83775b684b6d1dd3ba06184a37262a6569b499d0f2a3431d576d1ea862c89dcd9a8d442f76d385fbfc2428fdda390"; } + { locale = "as"; arch = "linux-x86_64"; sha512 = "16a2672b532426e024ff8900853c2eca8498337b5e628d02e3b61950e33b01bbf202c9448200e7107ced7357c41797b2858a01982f21badbcdaf5df9dec750fb"; } + { locale = "ast"; arch = "linux-i686"; sha512 = "a1fbe0bf3daa30252a525a435eaf276ee29c51e7bc9f34826e1fd4817577d3cba8bad47af5bd5a31b0d77939e6475b81d1f6858364d2425df5d94724d3569228"; } + { locale = "ast"; arch = "linux-x86_64"; sha512 = "e11e54442d958f98b5e36747fdd7f95341129ae6888c61d98465608c48526465197a33c8f9c299cc5b2ce620b72734d2f2d6d15c05f0725c6b20bb62e47a0521"; } + { locale = "az"; arch = "linux-i686"; sha512 = "3cc0a9e3276b283890b8ae9404b562b1cebe0893f459f31f9893d3c6d73cb074bedf51ce11eb062373d79273005cda0485b26a9de09c7358d589137d7c641cba"; } + { locale = "az"; arch = "linux-x86_64"; sha512 = "955d0e39c9d82d43a137f933e9c34a2e28103c79511121e4e25ee97f9b6abfbb10f5a8ada0c1d31fca8dfdf37b18d62c1fa5715483c6dd60aba584012a7eff7b"; } + { locale = "be"; arch = "linux-i686"; sha512 = "7d1251a115f7b590e1fdda6ce95c6a883ded1e477028c1f47bff3c6d41308fbd6e636e81e551ed629d6c885a1a348091c582c26f610aae7e0313024949bcd963"; } + { locale = "be"; arch = "linux-x86_64"; sha512 = "b23476c0259ede183fa4ed7193e80ce741ed05b3b88935f88291cdf6ce14235e1d31bafaf25edc16b5a7cb62c9671dbb235782913e9fbf10db48ff9f022c8043"; } + { locale = "bg"; arch = "linux-i686"; sha512 = "736dcecd01eafe4ca71da494ada47dc434eded887e8100db1c308ad0ae1d35d6ce565535fe153773896482312b65d73cad9d09478830420b5490370f00059c98"; } + { locale = "bg"; arch = "linux-x86_64"; sha512 = "c25d754286263ed58772f6bc1a13dd3c2525eb973b9cb4783fa2c57b80e117df5f8c5524aa60fccef158b4d80ddf214b50ce7b9e8631b14e60aad0bb6158f4d5"; } + { locale = "bn-BD"; arch = "linux-i686"; sha512 = "7e9ff9e316b253e8f3da135535fa38a70ad34183ab4a46d865c1384ae7df72cdcf9eeb8e85fc7e3fe0e0f8c01d50fc3212631f49ad74e34b236a652c929f1149"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "e26be6867709dc3827ad893efb7bb64c510506582683f4c82b7f5dc2931cd34075bb2001da6b3671532ab1a500d097b21388dcb0400f11c6c5c341fe1edf9136"; } + { locale = "bn-IN"; arch = "linux-i686"; sha512 = "eb93ac222e6d156b044e19d945d7b74ac70224f295cc533012ed6978faf07e0c8214ea6eae355b9905dfedba8a9fba9601224c1eb8c11a6c7e9575cf90ed0ccf"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "4030a6653fb4326ab8d4bc27b9d3e194760d2bd04749f102014b805253438ec04f0a1df0d5f14e62f35227b671de193213e79be947bbc31dc772885048b1001c"; } + { locale = "br"; arch = "linux-i686"; sha512 = "dbd75807aab017e012be8138fc6f2b470cf88a7f9afae01de4296dbcbcc4a37754f9d23fcc892efcde4df4e9b8a16c93201c3f93f976987b6be4f80a907483fb"; } + { locale = "br"; arch = "linux-x86_64"; sha512 = "0b06186b4ac5c5d69b46b4d571acc23d5193e4dafb1cac4ebaf36f7fd1f12ff4316d47f8340abce72dfe5b8801294256a9c029b6bf9fb77c7ee6174d6178378f"; } + { locale = "bs"; arch = "linux-i686"; sha512 = "e708a86177d3d3a855a981ee81c7bc163e886c279f84c6dcfdd3f6dc2c58d0661fcf416b2afd8b74ba127713e5fc39b9f188341b2e84fa03476c07b74ea07a97"; } + { locale = "bs"; arch = "linux-x86_64"; sha512 = "aaccaef63d0150bd2f0bb3cb978fa0d99f8b25ee70d4621ffd5bd7d7843ab92ac778cf9ac85c9762583706a78a5bb5e0066bc46c880c96623b92acd919e37246"; } + { locale = "ca"; arch = "linux-i686"; sha512 = "ed0f97e485abc2342dac0083311537b98d5c38005bd6ed1fdf817d1d186442cbfb1a71bcb1f62e09e873c36e350e8905611e3013a6dea20921b9516f82ae4daf"; } + { locale = "ca"; arch = "linux-x86_64"; sha512 = "16a6cf783feff0658bc41e893873bf5621e2b663834cfe13bfc07980af290ad2f582ffe08af8bbc46624e6eebcc468c3cdd928b2392a57dd8a730c2ca98a476d"; } + { locale = "cs"; arch = "linux-i686"; sha512 = "c8e0e40a4001ad734c23f407c126ddaf36e967ae7a08c34f3e562ca986fe941891f3580e39ac3b521b9c8c18b9e21bc37595716f943d252e69d03fa5a18a73c8"; } + { locale = "cs"; arch = "linux-x86_64"; sha512 = "f5a9091c4202a578dfb7a863c5bd5229882af85fd1b0d3ad491963f928e9f91c78a742d3e68379df233346169351db4b1773517194a1c48e533978f7189988eb"; } + { locale = "cy"; arch = "linux-i686"; sha512 = "ef2ac5d8a9881d3f1659533a88cb4b9ca1bf50b5dfb11f7efbeee9c51ddebffdb302ad80fe88760b9a592c670f93375551c85f37840b9f35f2729b575dd0d273"; } + { locale = "cy"; arch = "linux-x86_64"; sha512 = "fd091f53184e6ad5cc4dfa92cb9fd146fa116055576b51de51ad8e335babdd55f62083568eb34821c0cdc882d61854f9f1f69ffc3913f711b9f6ae7b42d096a9"; } + { locale = "da"; arch = "linux-i686"; sha512 = "b45f88694c49a59110d1bd19af371fe8308200de9d21858d71ff69bbb3a75c2f71e9c7691513359cac7085173fa4678aecea12db5f274e7f0855680f6e8434ba"; } + { locale = "da"; arch = "linux-x86_64"; sha512 = "65c8bbbaf59e749502b35412e3ced200e1d5028b615b27e519932cf87d0c18e9dfa767c90f933bdfc3afe064e0b5630605338e8c14f405b9a3fd15ff350cff59"; } + { locale = "de"; arch = "linux-i686"; sha512 = "9c55735b51f7290f90b665c91fbdeebf285e82c30ea0462670064c6f30b3ca778cc0f7dc005df3308a46430b20e2aefc9fa4176f4b119c1a1a67750e646639bf"; } + { locale = "de"; arch = "linux-x86_64"; sha512 = "4871350400a76ec4a2af37f1c166da9b1c28314afca1e5c73e4180b6d8f023b036d9d4cf06a52460cc2bc2dac8e086862d433ff70b0e9add80c4f6bd086e7085"; } + { locale = "dsb"; arch = "linux-i686"; sha512 = "16a12385c1d2d7efd17fd904dc5b6c223319a482d673953b1897db908c8c80f58943d14ca8c88b82beab4a94548ad3d8d0f7c6e47f9bb219e22078ebd3b6f90e"; } + { locale = "dsb"; arch = "linux-x86_64"; sha512 = "a81c4e8d18d042bd555fb163de4505f326ed9c40244cfc84db7fa9d346e532a8e8e78218cbd78bc4ac751ed04c3f3e4573edb0b21786f231a08547ba4e63f1b4"; } + { locale = "el"; arch = "linux-i686"; sha512 = "50d0ce8a20a0bb6d5b3ba88d70428aa40dcdbc7993bd8802c3f77bf2e82552d6e9c5ff8fbfa8731b38ebea0511a18e65dab7fac92dee0714be7c5e539e3a8965"; } + { locale = "el"; arch = "linux-x86_64"; sha512 = "d8a0fa5a3c0cf0de77aa9dd0882d35a336db5f068e9dd87169201e5d5bf4960880975f3c7af193ee537c6692dab3a86bfc57416f9132791a32094c6b12e05a3b"; } + { locale = "en-GB"; arch = "linux-i686"; sha512 = "7c509f7c1760474f41f31260f30ca8aa6fd89f8fde699b4c6adfcbe73dd40b320397f3753d40467a60cb915a6a91745733019ea9d33452bcdadab8950e20d165"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "ab5f82317bd2f7aeb68295c39526fbdf1f7c8301b5805dda530d1c0f40922622bf75a9bcaf543036c9f039222a59d70054d63561f851ff7e5c10e87794d64148"; } + { locale = "en-US"; arch = "linux-i686"; sha512 = "d8824a0b2dfb44558308a7f240884c0f73b3face4077f59c01fd8352d33137f4799e417de9befe6865ede03dbc77ea5700e95d87783363a332028bc26ea681b2"; } + { locale = "en-US"; arch = "linux-x86_64"; sha512 = "417c63be1d010cf134940be7f30a69d33dbe005a7789cfebb1161f2aed8384f90b5cea6c097bdb2102737b948684657bf2bf704324f131a4e6b41e56161e4235"; } + { locale = "en-ZA"; arch = "linux-i686"; sha512 = "a9468aa01d2223c254a7c07407a4e3941a5433d5237489b097ea6298537867679fbd6baafead460bc18951d1401e8c3fc100fe28492cbd745772afdb7b708541"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "1e249c7342fa47c868489ff8ace68696b51b83563677c232f854f29f864881823e451113af444cc6f761539b590192a03461069d175ea50304308e5a490bb8a9"; } + { locale = "eo"; arch = "linux-i686"; sha512 = "e96b37a25ab897ff4956b42f75b2b1a4f7bd60ca54939712fc356e77e2e2d8255bcec767971ac3f4215894e2b90a5204e72e70b05c28173a1179a5d8d5810b0d"; } + { locale = "eo"; arch = "linux-x86_64"; sha512 = "0679199691f725cc1d3224cf351c7910a50d6e68496b53a780ae1ef42ac13ce0616eab370db310b0226205709ce6c0fb414d2503c8ea7b3c8c53fbcdb30ea470"; } + { locale = "es-AR"; arch = "linux-i686"; sha512 = "c5f813bb95f547d220ea6de23d57dae990904e7921880eccac0a987668103ed53086deeadfeb9ca548bfc5f9e4b56d0c90de15ce29fe4c5e40a6e0e084732ae5"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "e3353f9f4621a6e2a3a84d7ebe5dafae8a5f7912afb3c7c949590abfb40b3c8fff2baefe635a435ac5b50e402ab60cbbc2a34b653e31b868e885acc0002fd774"; } + { locale = "es-CL"; arch = "linux-i686"; sha512 = "5538d7633a1d1b8cfe3304fe1e6d443ef329554f299c43b0efc0bd8e5d4db07cd5f894741d8ea9ccb3d20bd2d058a7239d89cbc37807ceed5931d820db364ff5"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "685c1b68c412473d3f1449dd26b69b0182a2ef3e298e240cb147ad134b3f18a4c88aecd2e328f87106a2a2be70dcad06f8637cbf15f89320e196c4710aefd417"; } + { locale = "es-ES"; arch = "linux-i686"; sha512 = "095b8453d3a6f829a9be6445a345293e1697e2253346da2c6d22958d19f921dab897d52782ff901dcbd5710ee62641d6ca45675b4afc8b15874dfc3f40184649"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "8f9699720a1e4b2ad92d6dd32bb553e5ec2a7c1038f8f8469809f351b6798f94190b2f8e9ec45b2888422d64dfb6106e1e5d5272d9275794ae1c3e5d23c43340"; } + { locale = "es-MX"; arch = "linux-i686"; sha512 = "fa3116b5b40f4e844d39380832bded90bb7dee573c475fe7f4002fc871846fa6f52cc090d5704049e5ff296c93132bec6d6923f707aaa6212d524b4aa514b42b"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "a6d577f962ca2b9ebe7c4fadb372ff3322a40aefa4229b7a2adae05e6ddc8ef60e90134c15604c8cf88b794f545f566dc090a55ac36e93fcd03333680043c4a9"; } + { locale = "et"; arch = "linux-i686"; sha512 = "c4e6e4de6e3b7e28027ef44c995fa87baf22f97bde603f9b2ca08d9282efacfc8ee410557658b6fefa9867aaea6ed35161f1ba6bcf83eb3581c28a68c573fadd"; } + { locale = "et"; arch = "linux-x86_64"; sha512 = "e4362621a4fa025388b565ebf7b3ce1d94976a1421e5d73a98647e9d0d3159b45444eb0f84462d668026567aaf6c8971b7bdd075c5b498b95a78c4dc84f6d368"; } + { locale = "eu"; arch = "linux-i686"; sha512 = "43f58f824deab2d145bfb4200bc942b29975a86ee66c760b955f3b6647d0f8acbd116b175c4a1c7b4be9beaa62f7c56a8ff132a3cef41c1fa3cc7246ce3bdfac"; } + { locale = "eu"; arch = "linux-x86_64"; sha512 = "a4a3091e35e276ee0b8db78993174f18efe1dea0c2ae3fbcdf6c75102a0f0baf4177c4b08d5532267ccf6991d3ebf96a0b9c2e4b6d2fb405a230d6ef3ebac98f"; } + { locale = "fa"; arch = "linux-i686"; sha512 = "b78c60eb33a408ddc37d09d00bf077958dc75ad50e34b41cf41cf0ee3ab1e6a133a01b7759015d2be3869c621a20bf92e13a1ac39f998040650dd228381b3ecb"; } + { locale = "fa"; arch = "linux-x86_64"; sha512 = "e95b6fe546f41f24b749dfcfd9c98129f97b1b0034e1af8f787203ece66f60c30a6670c1fd76b14433efdddb834c95751d4bb61c3b269dceacd46d9e0a515706"; } + { locale = "ff"; arch = "linux-i686"; sha512 = "398a80d6d4511a9c372727ab6a52a85db90ad8cc922f5d709471a40151e81319b5683d84110541bc721a8c15b18617e5ac44f7f54f2b2f11a2b7125e914d1f3f"; } + { locale = "ff"; arch = "linux-x86_64"; sha512 = "3b4371581bc077c77d7ee5781fbc82d82d746f82babbe66aeb1ca0d7c6a3fc168e0eedaccd8bce8cec67bbb072158beee8efa49523fc90ac3ddc481d1966c8f8"; } + { locale = "fi"; arch = "linux-i686"; sha512 = "2f9276a91d2ff06142ba2b3df972d3bbcb61d43a9f8116cf32f09ee1c739a8386704b2fefa1ee45282a6a81b4009ab5deaef214120d5705ab65e768b28f8e981"; } + { locale = "fi"; arch = "linux-x86_64"; sha512 = "a803ebabe7f4ec0004d6ea888e70bc97c23a4d533ea9fe7e546031e530a32c4bdba2cf72549dd58939f92b1e0373dd9fd66833bb56706a877d75db4d7c5ccbca"; } + { locale = "fr"; arch = "linux-i686"; sha512 = "30d473d7f05e5082f5318033186bced91a087ede297581b06ef6b3383444fbc9e16f558694381574191564459b43c271ba255b6b3b3ac5d96a0bcf1e7b066b44"; } + { locale = "fr"; arch = "linux-x86_64"; sha512 = "d5bddce8fe9b6c2844cbedfe8c73930159fb189608e282dc0afeffe0e40fe8573eb3a6769fb18280c5aae58c90eec7d6808f18944ba8065476f84d9938c7f9c5"; } + { locale = "fy-NL"; arch = "linux-i686"; sha512 = "3757da3afd154b88a64bd6f505c89e2fb3df8d966d2219404bda36c3d00f90e69c35f6d1c5d33c1eec0075e2ccf7982bcbfcfc7766b62a5660a73d6a00bfc966"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "4101d6c0d8c257490781b90e93acb75f72486be9e7661f82c3c6cce3be387a51d03d458c7ef55cbbd9f0469ad1119405856c12b28f47d4262d89fccb773facd6"; } + { locale = "ga-IE"; arch = "linux-i686"; sha512 = "56ffc97d50570a0a155cb30e389b5590aaafae32b4a326c2d9deaa2a61ebef272709eb6173682e1c10f0f5e24523fd8d8ab53ee2f35bf9787bdf7c29ae4574de"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "faaef2808b901c5ef0d74d1bc69280f67b233ab720eb8139eb23ff9977c3ae32063b1ea1d948ed2240a4cb921ad2e07df06c71a99b210021d9a8f9178d6bc4d8"; } + { locale = "gd"; arch = "linux-i686"; sha512 = "0396cbd5bf6c3a9dfd829d1cf388e3b980b8b0e3a45659c4c339f867ae485c252e296a141035820f47d8fdb05c10350eb53e6da9d7d2942e77e1c04142440758"; } + { locale = "gd"; arch = "linux-x86_64"; sha512 = "1208d5cfc20dbc18a0a6e6dcef47425c36cdb5b98ac41e7d7b53c74d64ba0a4490273628ff23ca91f2ca4e016702d7e8ab4457219b5aa06f38f787243befab7d"; } + { locale = "gl"; arch = "linux-i686"; sha512 = "775403801f21d821b586b866820c9759fa88e7b0507d0477d29ac033ef3d40bb78fdc6b88cd4d7e5bc4fb6bbd38d950432db339da7a28e8283d07eed00d2aaeb"; } + { locale = "gl"; arch = "linux-x86_64"; sha512 = "d8a1088bdd413ae82cc488cce1d87a13f85fabb6fabe25dd343a806ff2c7a7d17c90275c5002434e07acdeddb893b34532f0265e7a6f9e18a312bd0903c76738"; } + { locale = "gn"; arch = "linux-i686"; sha512 = "a7bc239dd02bcf0e7e08016cbbf925f23811f63679956adc3a327849533c37983837c5de5a7620eafbacdedb9af892d51f4ee43df5a722795913d992b25ccd1e"; } + { locale = "gn"; arch = "linux-x86_64"; sha512 = "10c44f03df9b183b1e2f27f7a1628bb0cbae24f06d0395f4b57584905c5e8998535cd45030d2e4e93b9390a6d6e4a6f2cbc8a68a8bfdad978b4eee2790f84537"; } + { locale = "gu-IN"; arch = "linux-i686"; sha512 = "fcbae07a790973fd3fb16de39d8cadaddaf203efbeb3cc37065ad85ef9ee32ed02080c00343f8028f54898e44aecacc7936529cb3107323a869b9978fd85a5fa"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "16ac0309932e46e035537a9a17aaa44c523715ac5ec189935533d3ce473f8323f9784c742ae8e0527db8988b56efd2dee40062cf6eb4c2fa5982d435d0aa794a"; } + { locale = "he"; arch = "linux-i686"; sha512 = "b9ab9857549cecb2ea706f240bd988c9dbc9e24173e4c37443cb3915664e03f60042f72474fb726811dd0e08780251bee8ca353b299b761a6bcbe2bc6bbef368"; } + { locale = "he"; arch = "linux-x86_64"; sha512 = "0bffc9d5939f8347d1c08b4ca5a9dd64e53d7c15e8c08b4a6a1c51b089fcfa5e9e80b47d71728e5279eb57c0393e7e2e6f91a6ed891e30d73b02a3fe36a5aa1c"; } + { locale = "hi-IN"; arch = "linux-i686"; sha512 = "4a2485c41c48e6a3235084318df1b7a1acb3f032e9ffaf381587eb61459e04112bb9bc66775fd43f8d6f71e38ea78179b34ed2338235648f0de29f43ac2f8ed9"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "721994a7f480bcbb149ff4d1ee3e8ff230098dda8ef434276a73b42098a5d5900b000ed0409586236b33e25c4d6b943a0fe8fd1823e7c4a44ffeb41cfa2a9911"; } + { locale = "hr"; arch = "linux-i686"; sha512 = "4d0af384a421871a87a23232dcf272cecdf16d0901017f6485cdf2b851c48e02e0f4349714bb628dd1d34121b7d428e746abcce7130216d283ff858a4da749c8"; } + { locale = "hr"; arch = "linux-x86_64"; sha512 = "8565b7d30dfb1070d82f34cbcb9f7913fba78beda600214a306594deb2f01dde893a1e1b9753efcaa686a385ec14799ac1e1a96ce9ca80fd0e0731691e7b46fb"; } + { locale = "hsb"; arch = "linux-i686"; sha512 = "784dec7015875dcdb784e909c3b7f0e6bc09bac753b4bec4bcb0cb9413922a0887959d999ea3ec2e85cc361618cabcd59e6eb9f1993079eebd0f981e79a33070"; } + { locale = "hsb"; arch = "linux-x86_64"; sha512 = "8f9baaf433fc34278c2ee78d5c38f71c9a02b26c18500688225f03bca8eb1fc5460dcfb20f6d4f1bd54fe4095a09a94b45fc695a38c69e4aa52b6457f65c461b"; } + { locale = "hu"; arch = "linux-i686"; sha512 = "61ba87779c9a669d088af105266818be476aeff86fe93342dee90fec2aeaf687c437f9b05e71c249e2147eae10c2194fdd14c8f44ce31bc4f530f52224e844c8"; } + { locale = "hu"; arch = "linux-x86_64"; sha512 = "852785314f3b56eb0cf0ff756518b428e5276e18e476cc1dc2fb8ff37b66cf1857fb28f40b5c86e7626f3684112943d117cefed4527aefcae03b10b871266737"; } + { locale = "hy-AM"; arch = "linux-i686"; sha512 = "f0a2329583a806a882b0d4fb7792badc074d1bb87e243a6f71327574b47f7fdddd9eea1b89f3d08f11b9436a4f6b8e558e9e52c645b18d56e3587407983c56ed"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "bf5c397b2bc3ef4cc1228df95989adb03c347ceca0630ece474e92af316289ef877ee3a9266d55a55aa6d770d48dff745515d7b8c8c868fcf788eb3587c8fa50"; } + { locale = "id"; arch = "linux-i686"; sha512 = "08d0959fe051109bbbf2e5b3c72bf4b7d4b3e4c92994b7487d5be50636599369bd74e7b8433142424dc64ffc1657a3e64f2c37c88af16d3f04e1679c0bf4c73d"; } + { locale = "id"; arch = "linux-x86_64"; sha512 = "a163d4270ec8e090b69cff1f94c2ea0d488dace58483f7ee1844af1db5fdd120bab3304b50feeed615fde478b18b0ceed5bddd2e2415a783ab4941c235db4691"; } + { locale = "is"; arch = "linux-i686"; sha512 = "249c58f2ba60deaa93d36e4d3bb4aab80be8a8d45c8669bb659a14edf1afc3a9a7441ed8e05e4724c5e64a153b583a1f43820068cc49f719b58fbfa36d059f22"; } + { locale = "is"; arch = "linux-x86_64"; sha512 = "b2468ba5d1bd46b8772d022f6d2e7ddc2661a83c0aa3d5573d3a892944abbd9952a4854bdc7be4fa899309340e712e5ca13ab3bd5d11e9e07ff50c26b5942248"; } + { locale = "it"; arch = "linux-i686"; sha512 = "2716f0138f74c2253355c1c00542503908a747ba0f0b26f4e79ffa8c3e343038e0e1b6c8d1fe02ba5bf1a0d8b0ffd22b7afe53b1a7964eb304e5ef263c04ce8e"; } + { locale = "it"; arch = "linux-x86_64"; sha512 = "25a51e8f55e1fbaf2ad9b496c4d9c80fdd21675af106fce1a71893bfa828e27e5d9c610e176ca80dcff6b5d0a7a6c860229586cd1f8619ca4eb8856f095336fb"; } + { locale = "ja"; arch = "linux-i686"; sha512 = "e2f69658e4a4d6f08f6a0f603355f6c421feba8b523aeddd34121f26ca42092c004fc678821286af355971cb8cf1156755796589bb5c5eb1ecdd8d0b6dc214f3"; } + { locale = "ja"; arch = "linux-x86_64"; sha512 = "344c9c073e7175e71b4484a9e2e8283a12034d752e6597a604dd219997181531302250bc8a37c4ca442d58076232fa2c250356194e710dc8a00be03a0e874bf7"; } + { locale = "kk"; arch = "linux-i686"; sha512 = "accdcd87c2b20fb6ff913978e117272613ebfd9154d20b12410930ef1c6b3375425c8c4fa20ee8e8e393fc906f422cbd5cb24f6d2914d5bef89e0254d075e0c8"; } + { locale = "kk"; arch = "linux-x86_64"; sha512 = "6a446286f867fd2775b0863c8aada5b4b8349c114589f869c8d1ef488bb1027dd98dd74ef0fd0fa1b16fb135265a7be8d7624f84b32dc42d29c7d4a65ab1e153"; } + { locale = "km"; arch = "linux-i686"; sha512 = "ee879b225b8f412a8117c33d6c5a9c617b9555d44fc393d6742844083ee83248f8434d00723db2283153496b0886080c20e67df9d7268a6c185a8a1f5b01e491"; } + { locale = "km"; arch = "linux-x86_64"; sha512 = "7cc1cb48aa31784c28f74f1968b798b34025ee20e7088eee2a33cc4f9919b59862b75f791f09f63c7f25cce29043750070064921d327c48a516fc22f26073a32"; } + { locale = "kn"; arch = "linux-i686"; sha512 = "9868cc4cbaab89dc4425ba14f621750a017a67d5be1a6a63b3a31d0482908e0225d40bc26fedca3472669185d43a780ae4e897994b309644a9d1f80edd2470f2"; } + { locale = "kn"; arch = "linux-x86_64"; sha512 = "d6c5ce52d8545935c28387b5a314d1b0fb11bed03111fc7c66da3dbffb72e7fd2ba6c12b7f2ccad3f5df45f897e8c8227428040709c1cb6f3302d06fe050714b"; } + { locale = "ko"; arch = "linux-i686"; sha512 = "3be5f165bed0e7ef2c4f88a9799485d12a7a6f99c4efd84bf9aa21abe787ed790d6ec103a7b95015bd64987d231303aac17a8947c8acc7127ddffdbe7e3fb4a1"; } + { locale = "ko"; arch = "linux-x86_64"; sha512 = "05a55063f9d9781074c76287ba9d1aef707a603510df956019e65f0a07412850ec29a44fefbb71f0ce8d3f419a40e06f725c2f23b05e8051783bda8f1dfc1d23"; } + { locale = "lij"; arch = "linux-i686"; sha512 = "3d9b7cefbf4cdae6855b2c5315cf192e6f04d4af115727ea275aef40b8819cb0a4bb31b7703cfca0812bd58f0d4158c53a5e0b4140cde6825338fa2bc5aab5e8"; } + { locale = "lij"; arch = "linux-x86_64"; sha512 = "2f050e77efab6947746f582246290b3709e206520836912c52fea9208a25f7fa5bb7bce0fa1ab2adb723acdc0586245eb1c68c3b172096af7bebb04c864405a1"; } + { locale = "lt"; arch = "linux-i686"; sha512 = "f438a37846f95c714650f882ef2ff20b9e82d352eb8159d7001d110f9b20347fe5d19ab0805ff95c3c9007a4cc7dbd4a75b9a28290cd21d2affdbe81defa58fb"; } + { locale = "lt"; arch = "linux-x86_64"; sha512 = "f4726e669e71669c3f9e9524e75e749386062a91e0909dc371a7b4ed0dae73647a855c052eb3d8fc8283438782192b2d35b795b2c0dc498e69e5b29916d1b57c"; } + { locale = "lv"; arch = "linux-i686"; sha512 = "49e4dd4349ac80e26cea7276c08de679e8d25a953a24f44ccf029f5cbb2c8f62dd650d53ed8967644f22a9df0d83665661190f20263c89cdeac264578d21486c"; } + { locale = "lv"; arch = "linux-x86_64"; sha512 = "91e8712263fafbe742bef2b1adba0cd34eac4453bb57f6439335ffd3014a663e6b0f383a085a22e58d271ec9f14de7ad6060cce2957f595a9ff659fcec5bd409"; } + { locale = "mai"; arch = "linux-i686"; sha512 = "bf916dd9a96080b25753684f63df03548a99943d3c301b760c692379224f093670f0040b126d4a948f0c0ae64a7138fe1be83814f18940f761cbf52dc0d1fe32"; } + { locale = "mai"; arch = "linux-x86_64"; sha512 = "99016417b0f1d433acd8db0eab87973b7c3155ee9efa0e24f8deda25293c23b08337eb17006cfadc99bb8d2bb51dcb519e4270872a63986a75d44929cf74378f"; } + { locale = "mk"; arch = "linux-i686"; sha512 = "7ab1081f03f59d56ba2f40845a7c2249c20c87d836e886aca140471ba4fe59b4cc9cfcf765995d89735d4253c70d3dc44185e52caca798d1641831fcd1f49e3d"; } + { locale = "mk"; arch = "linux-x86_64"; sha512 = "a8ff017f9678018384056b2b2c47c8250a13b4ff4ff4a48c2c25e4afe9531a033253a8375180b58654605026f07da3f6420177bd599277e1a7f280f17c4a493e"; } + { locale = "ml"; arch = "linux-i686"; sha512 = "18f092773c075cb74e7215f834c7cc495a21a768bb50981c6de3c10c83c57459519f38e936fa99112c896696c3282da53c4446958f0f66799c7bfc16634dbcd6"; } + { locale = "ml"; arch = "linux-x86_64"; sha512 = "b10f45e990b0d621a5c907fe166b8f8d57b071a4d45037c34736fc172b255485c43620b083eecb51da47a8ab827bc1c900b48ab1820844b374d46cd97dd7d1e3"; } + { locale = "mr"; arch = "linux-i686"; sha512 = "e27204611b031ba9ef3e537d1983ac79c1c0ee170e0c18fe6af4ce101165b50cba64c0ec965356dbffeb3d33c8964457cefa54de54ef3bec8657dc30825aee9e"; } + { locale = "mr"; arch = "linux-x86_64"; sha512 = "48446f72998b100922e506ae4d6a7528496ac96ccc6faae37e52098c1031ac3a5ef1158e308fca7e7f93abbc858a9d97000568aaded5a439da66710945ce2b66"; } + { locale = "ms"; arch = "linux-i686"; sha512 = "cf8257b14717e23f0362973d8e1913bc230650754616efcfc9451f48dde6100d6ac43f4a21fd06c84809707a65985a788c73d9dd5b6f28f4fffaa1818e2ac2b4"; } + { locale = "ms"; arch = "linux-x86_64"; sha512 = "a25ff650f0fa0a7e153c03d413b5745b00eee731aec8bdb84ae69e0ea0e967a6dcc9329adea086d9ff7d8b76e35154936e716440b73f61242681f3527e272bcf"; } + { locale = "nb-NO"; arch = "linux-i686"; sha512 = "98b31be954a71ef221d5fb7f84de52a7f5e2e1cfee20d432b82236d1aaed7dafc63d05163b1946ed6619f12e9c4b6d29761c75ee3f1858112bcbbb373705ab08"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "14ad4ebe13d1952dfcb46443effd2bef636aa5d59235fae54665a3bf2575da8a37c9ca5149732b83ea2724f3bc87c24d7f5f0175e0e296144f7348a987a99486"; } + { locale = "nl"; arch = "linux-i686"; sha512 = "86313d415f0c0cbdf29bf148048b3c230382dc17193f8f72f7ee61ac8d3b253cfaa3af8c633662d14c2d2ccb9308d5cf612eaf1ba36a19f44f560771410a7e4b"; } + { locale = "nl"; arch = "linux-x86_64"; sha512 = "971fe2e96df5411949f783c2b0af9b610bd1069bc135ba4f70cc5ed267fc80dbde032f2bd0df6897dbe8b5e9c6c130a5cd91b174fd0638bf602324fc91ed6636"; } + { locale = "nn-NO"; arch = "linux-i686"; sha512 = "ba19b2698072a4df36c5a1a279f4c3a175ec713db0fa737865aad38c2a72a76ec70353268723b55bc4aabb9c80b54357111cae62d572455d1f92599f6cbaa102"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "f1d8796fb582e9734de4e505f88fec21abb2b4012d4ca0d2193c90a6164dce77ba33ab46cdbbe9f136bd2d89668cb86953517c51fcca7369636277f14cdf550d"; } + { locale = "or"; arch = "linux-i686"; sha512 = "1d77a35547d7011fbbca3cc87f7739b54b4262fdecb9478f572095cb892ebd03724357f35ac19706161fc2e4ac1f1494652f918ef12539fe7f2741794439752d"; } + { locale = "or"; arch = "linux-x86_64"; sha512 = "5a75b99ef9aac1881be88b77618262be95122cc93b957f0ba9a7bf6e1e2f4705078eb884096201caebf3f5d4e64aedccf55d0fd9dab63d1772121853a1c16507"; } + { locale = "pa-IN"; arch = "linux-i686"; sha512 = "3785c52e02c69b5526d87bbcc383bf9556af1a077b3d3f8a891d51e9ada3bbfdbd769fc23248f482f7a0be056623a73289605d9e7b429b4fa161dd311fabedde"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "13f20bcf0e518ab28dc35ef0e9eda84e4af4813e6e783303da78c1775f557cba27118f3efab6ffc6c7973d43c6e85d7474861d4b0a11319e175a8dc3959d221b"; } + { locale = "pl"; arch = "linux-i686"; sha512 = "a018afb8480cd080d472fd57f76f9bec10a7ca36f002f82cccd3f5f2020a276aba56207138d8e01ad602941bac910552c64df961df1c22f643829eb1145431f3"; } + { locale = "pl"; arch = "linux-x86_64"; sha512 = "3fb6f3ef60f577550173a893b9a7033f22dfffa6f8198b9e6be3d643da604a87cfc6fa2583ed46b2bb572cef1656d3901f849b5aad2b515ea1d275a41b44c560"; } + { locale = "pt-BR"; arch = "linux-i686"; sha512 = "60ab5ef83df1d9a4de6b687b124ca8d97dc7f7cd86021e5401365efbd7294d9c8f459bde56994a5aea9ca688597ec5b5a77567a41a60965b7f7a73b11de72622"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "27acfc996b32f949b8d5c01427520250d07d63e927febf6381be51abea12e9c8f8c4b404fce95e9b57ed9dcd58bc1f836e99517a000e7af8632ced98c52609e5"; } + { locale = "pt-PT"; arch = "linux-i686"; sha512 = "e01c4186e58fa418a56e4b76d05b8fc42479f077465d9f6fcad984689375d72749ab623245ea64493365f02a3080491cf401f0dd11e310d79a1a15db841a37b0"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "9ab7ba71df7343aed687f6a2636b72e09427e06ace51983994b2c4d112f19fe124819a6a6164fcbdbd33192bfe1cfe53dda0d7c86457b9d73b8e043b4d6283e3"; } + { locale = "rm"; arch = "linux-i686"; sha512 = "0cbf512e18f0e11154e62057fd5e91a8dfa1dde5da7574f64038a85bb00e72a41d3f8cb20879dc0b7a0eaf4a8ac20d2f7bd7d9f1339019efd92fc6b9899b08c8"; } + { locale = "rm"; arch = "linux-x86_64"; sha512 = "3fc727528ab5365d0dd64bc57d449f508c932651130017abf95bc20e5314bcced1a7167333bc5c501386e34d9ba4dcae888d16cb2cece8d02a1bd716d8a08ec3"; } + { locale = "ro"; arch = "linux-i686"; sha512 = "bbd61341279fb44931800c95266965e1786f9fcd63a2bde0ea9f667a9464de685d4facd64ce80f17e02e70113c145576d47126ff6b92ee5f064d5edba00d8a5f"; } + { locale = "ro"; arch = "linux-x86_64"; sha512 = "d505aa36608d4b4250aafb5e222107f0b8d18b7e1c3d214ce4cb0cb96c8130e2a67b35048fb5d509730d6d00abb62210e5c251ea38882852016c2eaf2f74f895"; } + { locale = "ru"; arch = "linux-i686"; sha512 = "5df2e92197eda83b7604565875844faab64c3b1b5ae61480fb1aaad29fae9c40c905470105325ef4128f31bf249967c542552248a3cf5ce208f81a59f15b1395"; } + { locale = "ru"; arch = "linux-x86_64"; sha512 = "ce0f678554123ec89379e68b809d9c000b151ad88975b2cd0e4c69a7b0917c52ec8b2a6a06578a7b644837fab718b301b704dba59848a4773ab272c235655d29"; } + { locale = "si"; arch = "linux-i686"; sha512 = "2d1dc24a65a747724b3d874e4ce61cf9adf23ff280108d528e75b1c0861859633b98d8f719285034cf9148c551fb509fed6df189a2b69dcc8d4e6ad3ada61921"; } + { locale = "si"; arch = "linux-x86_64"; sha512 = "2351940a022ed65df456a14a0eced296e9ee70b3b2f0343cd65b78c7d6a7a7e7a201e95d5418eb40ba88757f34902ef3f7cbe2ec0e24f6aa051064ec1b490049"; } + { locale = "sk"; arch = "linux-i686"; sha512 = "e2ad162074bba4d971a02684a4c5f4d84627a7af4027de55a7698e33a6450d137081039527ba478977b1098595a90e6a8c0ed586be1991605e2d82d104522ee4"; } + { locale = "sk"; arch = "linux-x86_64"; sha512 = "963db53c67e1ea6f7919939ed6100cd8055da79af96f5d7038ad298c597fa619ca0c01ec64198a757a1307ce6590b1b67fc90169d78eb19492a993a29500a2e9"; } + { locale = "sl"; arch = "linux-i686"; sha512 = "2a72ebf8fc40a4b8e4f1633efe7f0383813ca1e1bd25d5040dffacc332e9a2a8ce653be42a79ea45c7560e41678832ed665e06fcaacb9d850ccc6b46b0bcf61f"; } + { locale = "sl"; arch = "linux-x86_64"; sha512 = "b22284cc397b0233dc6d00da5d222998024d47da7b967de9380c50bf699def1b79a21df280040da5b850d6713d521c39d8f046e3caf817792bcb1c716fca8370"; } + { locale = "son"; arch = "linux-i686"; sha512 = "36d4430fdcf4412aeb5f006269327276f90bafaa65ac817feff16fc23f2199e8cc6bc1c3441b9888c6b6723a70c2f030fd9a855a86516b89adb8c537dca4acf9"; } + { locale = "son"; arch = "linux-x86_64"; sha512 = "8bd790a9d027beb003456017a28d9b3c70aeb21afc65032c70e9579b3733a7f5e9cd86841d40bff02918639518593c988c575ef5fa044fef5daf21b83ddb98cf"; } + { locale = "sq"; arch = "linux-i686"; sha512 = "abbb952991f20a728d9ce2a098f605a8e163dce73c065aa3ade72e2ef45bffc2a8cc668369d90ae18702502a829ede1c33ee266a286247ce0d6b11198847d195"; } + { locale = "sq"; arch = "linux-x86_64"; sha512 = "3cabe8fce7455eee9ebd2cf294e1ff345eeb00a683f5b4b65f404560d9cd5b5033576207c3da20fd0919e823fcd256e2518c55c951dc1ee3ec5c61c122a2a1f7"; } + { locale = "sr"; arch = "linux-i686"; sha512 = "7011df81c9ee333838a80e013746ceef2ca3dd25f65d530d22e71f11742899f9790d0acefb12e162c7f51a6d8ee1c9a1089e91029ba994534498a04cea1f407f"; } + { locale = "sr"; arch = "linux-x86_64"; sha512 = "66d5f9ee32f81ce73e9068a8c0610c06a8e89182e04701704cef9bd666d7b070fefb902eb3f5d457b360812d8be0682904faf80edf1891f614c9cb6ff0d65e6d"; } + { locale = "sv-SE"; arch = "linux-i686"; sha512 = "2e62d438b36418d21f821d764e1e91789e6f780d676354431816b8c5eacd81752b55a2ea438f6ce16dc7393670d21fb8966b899f933487efa38e4b2356cd60c1"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "f295eae86e011f09969b0b82f4d41a3e886a53080bb6db350b07cb4eeb83b7c20c0bc1f908fc0b5212ebf19dcdcb8d1ad5814818973823690e55f02af9b77f4c"; } + { locale = "ta"; arch = "linux-i686"; sha512 = "ad2adc9a5ea313a8d654ec2a5c38b4ef08c42be0330c038e1da08a83fc1615425cf0de1c6edc612f1e5c37687564a8b6809ca1328830ad2b73760d439b63832d"; } + { locale = "ta"; arch = "linux-x86_64"; sha512 = "c0557d9217bdb861fa07774e08c6617ca5aca8ad1a140ecf5ed3950967626ff2eb9d3b34152d021e4ec6e2e95078a34f92eb6ec242da5f3069e1f8a771721cb0"; } + { locale = "te"; arch = "linux-i686"; sha512 = "7e8d1d99f651f1bfad0d173ac223d1458e82d2bb507aa1d06da2f66cb969c9d0ae1756a22fbb38b0937a3a615cd28414da4c9621440d99f5a867a16ea74ecf50"; } + { locale = "te"; arch = "linux-x86_64"; sha512 = "ae2c563816c992cc72f17af8833f26b5da990ee228481151ed173c858d2c151df19bf80fb514b9ac79408f737077b31cf43a27f1740777ce45b06b22c87df060"; } + { locale = "th"; arch = "linux-i686"; sha512 = "294b297618a358c58f6b3fc6d9969b4b687153df233d409404a82e4d4bec7c67e40aeeb42094ff0f5f4517ad53b666a8eac22e087718501ff1e6ae42a939f99a"; } + { locale = "th"; arch = "linux-x86_64"; sha512 = "e87a3d13493171c18e2aef32a98648573b891f993d1f0d89aaa0df96011f1473074d40db27f1168a1d15494745a228b60bb6d6b171b024c225334070ea92cb40"; } + { locale = "tr"; arch = "linux-i686"; sha512 = "7fd7d196f406d80a8444fa58d8c3426160c19ef63a8e3846b0f0429d0db9b7d7366d82d94fe6b3f3367b573264b9f9cd84e41e1c45f71443a719393cb72255b1"; } + { locale = "tr"; arch = "linux-x86_64"; sha512 = "8e84394c1d0b7071e59185f11c72a88f05ddec013d5e95ffaaaa4bd7d40ebfaca2016fabb62d21d40326400c7f291463b14ed50c7b8616372862242b3bbb7e59"; } + { locale = "uk"; arch = "linux-i686"; sha512 = "31b888021abfd08b808ff41715429a1a1018719165e0484ce6dab26b1ab73a5268e46237b463ef7e25e47342931e1f3c9db053e057daa62ff0a9911edf9ae4a9"; } + { locale = "uk"; arch = "linux-x86_64"; sha512 = "a11751be6d26e81899a850d22ac5e78e2b58abfdfe4f9f2559b31b973a6ece1530b91d7bab109870d01e67ec18117b8fa88dcdcf9fa7ba51e606cdb4e25d7823"; } + { locale = "uz"; arch = "linux-i686"; sha512 = "9818a80f5270b3d8f0741cd7b108b7ae115cc465c83c3aabf177dd7cea681272d14790cfc0dd167aa7d7299f8fc03d28c178f216da55103f7e0a92901efc1699"; } + { locale = "uz"; arch = "linux-x86_64"; sha512 = "6870938bcff8a4d1854dd61d9d7067e780018ac0b4fc00c4e8b4e81f72f4952b26b069288f4831b6335da49330ccc296f2868b8491a10c4670bf068d1eaa4119"; } + { locale = "vi"; arch = "linux-i686"; sha512 = "e267225667c1dcd3f4f1b1421b73d36149656d541b6b6786528c38b78ad37e1ce067680359df54320a814812f85ea0644efab90ae8e82f71e2710a030d609110"; } + { locale = "vi"; arch = "linux-x86_64"; sha512 = "a437a31a83d6eddc3db5ae430e3548843fde5b0c56ff29dbe42670e70388b23e7aa31e1bb2ada8868d514ed06028b2c6d0c23aaed17b397cdf002bf36691aa6e"; } + { locale = "xh"; arch = "linux-i686"; sha512 = "01d2b86cb0fed4ce7b48c54df75e340b95d876f2bef521de69962c0d4fcd531fb32960ba6fc30f4eecb9781d165ab7b5818d472954d2083c2b5093df21aa0f14"; } + { locale = "xh"; arch = "linux-x86_64"; sha512 = "4fefaa22e79288e9db20415538a3e923bce31f2d3a27b63daa8d16aace0ce1ccece25f841ec28dca6a1b9e396e7279842c3ea226e96f47f66e63dfe1ee32558e"; } + { locale = "zh-CN"; arch = "linux-i686"; sha512 = "811eff9c31525b6a2d794220f82e0eeee7c240a0feb1b6091f758d476a1fa4c3bc8e75366de24318a4e6595989a4312208f5a47ed39772e4370b1c85dffe9cec"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "d6b1bf7e3cd89dfeb78474daddcb91f1a709d1f5568192b406ba7b7a790ea9968d93e60d3e635ee4712e598b6f4dadbe7b19be0930ba67c4756669e34dc553e3"; } + { locale = "zh-TW"; arch = "linux-i686"; sha512 = "a734f6c36ff898a9aa5d8d27ad5303cef8de0e141921ce95624dcebfd57a0364bef7d4e443a93d67c98dea67ea888c856573c354cdbaf31d27bbba23cc396190"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "d12bcd38d2b65c9be8fd033bd896afdd88867841e4e55018f2f45ea84ad1496a74500db86fbc95fe887441fa8be501981754f2c0f3f97811b9d2713f86bf8f18"; } ]; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5f901adb856ce..b17dc21203fe8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12506,6 +12506,7 @@ in firefox-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { gconf = pkgs.gnome.GConf; inherit (pkgs.gnome) libgnome libgnomeui; + inherit (pkgs.gnome3) defaultIconTheme; }; firefox-bin = self.wrapFirefox firefox-bin-unwrapped { -- cgit 1.4.1 From 17d85f4e91f9775f71a201746810b98e010685e1 Mon Sep 17 00:00:00 2001 From: Brandon Kase Date: Sat, 30 Apr 2016 16:57:36 -0700 Subject: vimPlugins: add missing haskell plugins * haskell-vim * hlint-refactor-vim * vim-haskellConcealPlus --- pkgs/misc/vim-plugins/default.nix | 35 ++++++++++++++++++++++++++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 3 +++ 2 files changed, 38 insertions(+) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 0d754294cec1b..1de08bf30143c 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -67,7 +67,9 @@ rec { Gundo = gundo-vim; # backwards compat, added 2015-10-03 haskellConceal = haskellconceal; # backwards compat, added 2014-10-18 haskellconceal = vim-haskellconceal; + haskellConcealPlus = vim-haskellConcealPlus; hier = vim-hier; + hlint-refactor = hlint-refactor-vim; hoogle = Hoogle; ipython = vim-ipython; latex-live-preview = vim-latex-live-preview; @@ -1703,4 +1705,37 @@ rec { dependencies = []; }; + + vim-haskellConcealPlus = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-haskellConcealPlus-2015-11-14"; + src = fetchgit { + url = "git://github.com/enomsg/vim-haskellConcealPlus"; + rev = "fdd4e15800121edcb72e050650b02537af2d64ce"; + sha256 = "0dw9ibj54bnszvkzxhfdwxwyjlv5a5k1pbyjmbw44ldqx48x4651"; + }; + dependencies = []; + + }; + + hlint-refactor-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "hlint-refactor-vim-2015-12-05"; + src = fetchgit { + url = "git://github.com/mpickering/hlint-refactor-vim"; + rev = "fffb044ecef854a82c5c2efda252e09044ba03e0"; + sha256 = "0z8d31arfy9aidg1dwj5msnnx799d9r7njkgh51z695w6ayxn6p8"; + }; + dependencies = []; + + }; + + haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "haskell-vim-2016-04-18"; + src = fetchgit { + url = "git://github.com/neovimhaskell/haskell-vim"; + rev = "40bb7c933d2e95432571fcb353d69323a1432d4e"; + sha256 = "08da8hp1jirxzlwbnzf2zlpzya1jc74mahwsb37xnbs6hgvvpd86"; + }; + dependencies = []; + + }; } diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 2b8d71b876038..7a2f018a81bea 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -30,6 +30,7 @@ "github:digitaltoad/vim-jade" "github:eagletmt/neco-ghc" "github:esneider/YUNOcommit.vim" +"github:enomsg/vim-haskellConcealPlus" "github:fatih/vim-go" "github:flazz/vim-colorschemes" "github:google/vim-jsonnet" @@ -56,7 +57,9 @@ "github:lyokha/vim-xkbswitch" "github:mhinz/vim-startify" "github:mkasa/lushtags" +"github:mpickering/hlint-refactor-vim" "github:nbouscal/vim-stylish-haskell" +"github:neovimhaskell/haskell-vim" "github:osyo-manga/shabadou.vim" "github:osyo-manga/vim-watchdogs" "github:racer-rust/vim-racer" -- cgit 1.4.1 From 8c02de135fc8cdef456723ea0e5a8f5cdb4f031c Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 4 May 2016 16:06:43 +0900 Subject: amarok: add pcre as a dependency to fix failing build --- pkgs/applications/audio/amarok/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index aec2768e4505a..f709744274447 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -2,7 +2,7 @@ , qtscriptgenerator, gettext, curl , libxml2, mysql, taglib , taglib_extras, loudmouth , kdelibs , qca2, libmtp, liblastfm, libgpod , phonon , strigi, soprano, qjson, ffmpeg, libofa, nepomuk_core ? null -, lz4, lzo, snappy, libaio +, lz4, lzo, snappy, libaio, pcre }: stdenv.mkDerivation rec { @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { qtscriptgenerator stdenv.cc.libc gettext curl libxml2 mysql.lib taglib taglib_extras loudmouth kdelibs phonon strigi soprano qca2 libmtp liblastfm libgpod qjson ffmpeg libofa nepomuk_core - lz4 lzo snappy libaio + lz4 lzo snappy libaio pcre ]; # This is already fixed upstream, will be release in 2.9 -- cgit 1.4.1 From 0bdb8ef7f3e0e71d0435ec1db170dc0b4104edf9 Mon Sep 17 00:00:00 2001 From: José Romildo Malaquias Date: Wed, 4 May 2016 06:31:23 -0300 Subject: enlightenment: 0.20.6 -> 0.20.7 --- pkgs/desktops/enlightenment/enlightenment.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix index ea232a2c6070d..c5d5a400e05bd 100644 --- a/pkgs/desktops/enlightenment/enlightenment.nix +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -4,15 +4,20 @@ libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mes stdenv.mkDerivation rec { name = "enlightenment-${version}"; - version = "0.20.6"; + version = "0.20.7"; src = fetchurl { url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; - sha256 = "11ahll68nlci214ka05whp5l32hy9lznmcdfqx3hxsmq2p7bl7zj"; + sha256 = "10g1mn1myspdrxl7jcjx6v52g3pmmb0k2bxjgaqdx2s851cyipkw"; }; - buildInputs = [ pkgconfig efl elementary libXdmcp libxcb + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ efl elementary libXdmcp libxcb xcbutilkeysyms libXrandr libffi pam alsaLib luajit bzip2 libuuid libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" "-I${efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; + preConfigure = '' export USER_SESSION_DIR=$prefix/lib/systemd/user -- cgit 1.4.1 From 5901a8c63b0792c41706765eb11dc525793208fa Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 4 May 2016 11:06:55 +0100 Subject: autojump: include a way to find the share dir autojump-share is a new script that gives you the path to autojump's shared directory. It can then be used in the various shell's rc files to find and source the autojump integration. Eg: source "$(autojump-share)/autojump.bash" Fixes #3239 --- pkgs/tools/misc/autojump/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/autojump/default.nix b/pkgs/tools/misc/autojump/default.nix index 3bd44fb07b7e1..f0dfee7882a1d 100644 --- a/pkgs/tools/misc/autojump/default.nix +++ b/pkgs/tools/misc/autojump/default.nix @@ -22,9 +22,13 @@ in mkdir -p "$out/etc/bash_completion.d" cp -v $out/share/autojump/autojump.bash "$out/etc/bash_completion.d" - # FIXME: What's the right place for `autojump.zsh'? - # This can be used as a workaround in .zshrc: - # . $HOME/.nix-profile/share/autojump/autojump.zsh + cat <